Viewing 1 replies (of 1 total)
  • I see the same issue. I believe I found the problem. It’s not that the text is white on a white bg. It’s that the text isn’t there at all. If you look in your “source” for your html page you’ll see that the text between the <label> tags is “<? _e(‘Remember me’); ?>” This means that the server didn’t recognize the shorthand opening “<?” php tag. So you can fix it if you go to line 112 in your forms.php file in the s8-custom-login-and-registration/inc/forms.php file and modify it to read:

    <label for=”remember-me”><?php _e(‘Remember me’); ?></label>

    Worked for me. Of course any changes you make here will be overwritten each time there’s an update. Hopefully they will fix this problem in the next udpate.

Viewing 1 replies (of 1 total)
  • The topic ‘No remember me text’ is closed to new replies.