richdykins
Forum Replies Created
-
Forum: Plugins
In reply to: [Age Verify] Does this plugin block robots?Never got an answer tbh.
Was able to continue on the project without the age verification.
Forum: Plugins
In reply to: [Manual Image Crop] Doesn't seem to work on 4.0Having 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.
Forum: Reviews
In reply to: [See message below] Buggy pluginI 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