I am not aware of any compatibility issues and use the plugin on my own website with WordPress 6.1.1 and PHP 8.1 without any issues. Please check if there are any messages in your server logfiles (error log, access log).
Thanks for your answer Arno, I haven’t any log errors when try to send a comment. If I publish as logged user the comment is created but a anonimous user can’t comment. The comment button do anything when is pressed.
Can be a problem with “reCAPTCHA in WP comments form” plugin if I deactivate runs your plugin. Can you recommend me any other reCAPTCHA plugin?
-
This reply was modified 3 years, 5 months ago by
jagomez.
No, I don’t use any CAPTCHA plugin at all. My solution to avoid spam is using CleanTalk which works quite well. They are not for free but also not very expensive.
Disclaimer: I am not connected to CleanTalk and don’t get any money for that, I also just use their services.
Thanks a lot for your help Arno! I’ll try CleanTalk, looks nice.
Hi Arno again, I’ve a doubt, not about your plugin but I’m solving some css problems and I compare with your great blog.
I’ve the same 3 inputs checkbox like your page but I have them in different order, I dont know why but it is irrelevant. The problem is when I check the code, you have the 3 inputs with the exact same code structure and I’ve the “comment-form-cookies-consent” class in different way. Change the elements order.
This affects my appearance. I’ve v6.1.1 WP and I test with my theme, the 2021 WP default theme and the latest 2023 WP theme and I’ve the same code structure. Now I need to add some css code to solve it but I don’t know why we have this code differencies for the standar WP content. Do you know more about?
Your web have:
<p class="comment-form-cookies-consent">
<label for="wp-comment-cookies-consent">
<input id="wp-comment-cookies-consent" name="wp-comment-cookies-consent" type="checkbox" value="yes" control-id="ControlID-8">
Save my name, email, and website in this browser for the next time I comment.
</label>
</p>
My site have:
<p class="comment-form-cookies-consent">
<input id="wp-comment-cookies-consent" name="wp-comment-cookies-consent" type="checkbox" value="yes" control-id="ControlID-5">
<label for="wp-comment-cookies-consent">Guarda mi nombre, correo electrónico y web en este navegador para la próxima vez que comente.
</label>
</p>
Thanks a lot for your time and patience.
I use a custom theme with a custom filter for comment_form_submit_field to output the checkbox controls the way I want. However the whole code for the theme (functions.php) is heavily customized (more than 3000 lines of code!) and can not be easily transferred to any other theme or website.