Claudius
10 years agoBoss
Identifying partially completed profiles
I'm currently investigating the use of deferred profile completion, e.g. auto-create partially completed community profiles based on our SSO login. The problem here is that some of our custom compone...
- 10 years ago
It was easier than I thought. Just check if the name is already populated:
<#if user.login != "">
- 10 years ago
I successfully used also:
<#if (!user.anonymous && !user.registration.complete)> // your logic </#if>
not sure if user.login is reliable =), but as often there are many ways to solve a problem!