Forum Discussion

Claudius's avatar
9 years ago

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...
  • Claudius's avatar
    9 years ago

    It was easier than I thought. Just check if the name is already populated:

    <#if user.login != "">

     

  • luk's avatar
    luk
    9 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!