I am waiting too!
I did find the instructions for the settings (https://wpdiscuz.com/docs/wpdiscuz-documentation/gdpr/right-to-be-informed/), but the options aren’t in the plugin yet.
I hope the update will come soon!
Thanks ??
EDIT:
For the time being you can place this snippet in your functions.php:
add_action( 'comment_form_after', 'gdpr_alert_wpdiscuz', 10);
function gdpr_alert_wpdiscuz() {
echo 'The comment form collects your name, email and content to allow us keep track of the comments placed on the website. Please read and accept our website <a href="https://example.com/terms/" target="_blank">Terms</a> and <a href="https://example.com/privacy/">Privacy Policy</a> to post a comment.';
}
Note: Please change the above URLs to your website Terms and Privacy Policy page URLs.
It displays this message right underneath your comment form:
“The comment form collects your name, email and content to allow us keep track of the comments placed on the website. Please read and accept our website Terms and Privacy Policy to post a comment.”
No checkbox, but at least something ??
-
This reply was modified 6 years, 6 months ago by ldwd.
-
This reply was modified 6 years, 6 months ago by ldwd.