Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter richdykins

    (@richdykins)

    Never got an answer tbh.

    Was able to continue on the project without the age verification.

    Having problems on my sites too after updating to WP 4.0. The crop options no longer open in a modal window and the styling has completely disappeared.

    richdykins

    (@richdykins)

    @wordmonkey25 @wp-client

    I have had a similar problem with the WP-Client Lite plugin. I am running WP v3.8.1 and the WP-Client Lite v0.0.6

    When a visitor tries to login to the portal the following message displays if they enter invalid login information:

    $data[‘error_msg’]

    Obviously this is incorrect and should be some human friendly error message.

    I have found where the problem is. In the plugin folder navigate to:

    /forms/login_form.php

    On line 25 you’ll find:

    <div id="login_error">$data['error_msg']</div>

    So the problem is that the $data variable wasn’t placed inside <?php ?> tags and echo needs to be added. So to fix the problem replace the line above with:

    <div id="login_error"><?php echo $data['error_msg']; ?></div>

    This will then output a human friendly message saying that the user supplied incorrect login information.

    I hope this helps in case anyone else is still having the issue.

    Cheers

    Rich

Viewing 3 replies - 1 through 3 (of 3 total)