Archived topic
Additional checkboxes in the comment fields
7 replies · Started by Samuel on September 29, 2018
Is there any step to implement additional checkboxes in the comment fields? So just like you: http://prntscr.com/l09uq6
I don't necessarily want to install an additional plugin.
What would those checkboxes do? Save data to the database? What kind of data?
No, no, no, no. Not so complex. The point is: I have a lot of comments and most of them don't read the FAQ page. So before anyone can post a comment, they have to check the box that they have read the FAQ page.
Something like this: http://prntscr.com/l0fjnm
Maybe this will work?:
add_action( 'comment_form_after_fields', function() {
?>
<input type="checkbox" value="" /> Some text here
<?php
} );
Thanks
No problem :)
This may also be helpful. Easy example of how to add extra fields to your comment forms, above the submit button:
Thanks for sharing!