I use All in One Security to set Captcha on Comments, which causes Captcha failures when i have W3 Total Cache activated within WP.
Can someone explain how to configure W3 Total Cache to allow Captcha to function correctly please?
Thx
John
]]>I have started to get errors when people try to leave comments that require the Captcha, I am getting the same error every time — Error the answer inserted is wrong.
I have now disabled Captcha option on Comments and all is fine, but will this be fixed, i tried to search for this issue within the Forum and failed to find anything??
thx
John
]]><?php comment_form(); ?>
in it as the FAQ mentions. Does it matter that my pages don’t use a popup comments window and have the comments below the post?
https://www.ads-software.com/plugins/google-captcha/
]]><?php $comments_args = array(
// change the title of send button
'label_submit'=>'Post Comment',
// change the title of the reply section
'title_reply'=>'Leave a Comment',
// remove "Text or HTML to be displayed after the set of comment fields"
'comment_notes_after' => '',
// redefine your own textarea (the comment body)
'comment_field' => '<p class="comment-form-comment"><label for="comment">' . _x( 'Comment', 'noun' ) . '</label><br /><textarea id="comment" name="comment" cols="45" rows="8" aria-required="true"></textarea></p>',
);
comment_form($comments_args); ?>
https://www.ads-software.com/plugins/google-captcha/
]]>