Hi there!
I have the same problem, i can´t save terms and conditions options, any idea?
Thanks!
Reinaldo
Please update to 1.12.4.5 and tell me if problems persist.
Hi Javier,
Thanks for this – T&Cs and ReCaptcha now working however username has disappeared from the registration form? The Hide Username option is unchecked.
Cheers,
Just an update on this one sorry – I managed to get the field to appear again by adding:
<?php /*check if email as username is checked */ if ( get_option( ‘cl_email_username’ ) != ‘on’ ) : ?>
<div class=”cleanlogin-field”>
<input class=”cleanlogin-field-username” type=”text” name=”username” value=”” placeholder=”<?php echo __( ‘Username’, ‘clean-login’ ); ?>” aria-label=”<?php echo __( ‘Username’, ‘clean-login’ ); ?>”>
</div>
<?php endif; ?>
From version 1.12.4.4 – Looks like the .5 version is set to not display if email as username is unticked? It’s also getting an error on register as only one password field is showing. Works by adding this back in:
<?php /*check if single password is checked */ if ( get_option( ‘cl_single_password’ ) != ‘on’ ) : ?>
<div class=”cleanlogin-field”>
<input class=”cleanlogin-field-password” type=”password” name=”pass2″ value=”” autocomplete=”off” placeholder=”<?php echo __( ‘Confirm password’, ‘clean-login’ ); ?>” aria-label=”<?php echo __( ‘Confirm password’, ‘clean-login’ ); ?>”>
</div>
<?php endif; ?>
@themeparkportal,
Sorry, I have just fixed it.
Try and tell me. Update to the last version.
Thanks Javier seems to be working now – appreciate your help!