Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • templates/[YourThemeName]/login.tpl
  • templates/[YourThemeName]/ajax.login.tpl 

Checking verification process in client template

...

In your client portal template you can check {$clientdata._verifieddetails} variable to determine, if his account requires verification by Cloud signup plugin, trough Require full details feature.
IF this variable equals to 0, it means that customer did not entered all his client portal details.
Ie. in your client details edit form template you can use: 


Code Block
titleSocial Login template snippet
{if $clientdata._verifieddetails===0}
 Display information about full details required for verification
{/if}

If customer signed up trough cloud signup form, and he is required to enter credit that he did not entered yet, variable  {$clientdata._verifyfunds} will not be set.
So in your add-funds template page you can add similar snippet:
 

Code Block
titleSocial Login template snippet
{if !$clientdata._verifyfunds}
 Display information about funds being required for adding to account
{/if}