• Resolved bseidner

    (@bseidner)


    Using the Theme my Log in plugin, When users register the register message does not appear then after submitting the form a new page displays but the registration complete message does not show up just the box where the message should be. I am using the theme basic-simplicity, current plugin and WordPress ver 2.8.1. I also found out that this plugin has compatibility problems with db cache pulgin. That the password that gets emailed to a new user does not work. I solved this buy using the cache filter on user database and usermeta database
    tables. It did not help my problem above so I disable the cache to see if it was the db cache plugin that was the problem but it was not.

Viewing 1 replies (of 1 total)
  • Thread Starter bseidner

    (@bseidner)

    Update I did some digging and found a spelling error in this line of wp-login-forms.php

    old line: elseif ( isset($_GET[‘checkemail’]) && ‘registered’ == $_GET[‘checkemail’] ) $login_errors->add(’registered’, $this->GetOption(’registered_complete’), ‘message’);

    corrected line: elseif ( isset($_GET[‘checkemail’]) && ‘registered’ == $_GET[‘checkemail’] ) $login_errors->add(’registered’, $this->GetOption(’register_complete’), ‘message’);

    Now message appears.
    Plugin author has been notified

Viewing 1 replies (of 1 total)
  • The topic ‘Theme My Log in plugin not showing registration pages correctly’ is closed to new replies.