Add checkbox for GDPR Compliance to forms
It seem not beeing possible to add a checkbox for GDPR Compliance to forms.
According to german law the user has to accept the submit of his data
Perfect would be a checkbox with a link to the policy and if the form only could be sent when this is accepted.
-
Hi Lars,
There is no separate option for GDPR checkbox but you can add a simple checkbox to Brizy contact form and make it required. Unfortunately, you can't add there a link but could be a solution for you if you add simple text.
0 -
How do you add simple text within the form - so I can add a link to the Privacy Policy between the checkbox and the Submit button?
Thanks
0 -
Hi,
Unfortunately, there is no option to add a link to the form. At least for now. We have this on our to-do list. Sorry about that :/
0 -
so I can not even add a line of text between the form fields?
0 -
You can add simple text using the checkbox field type: https://jmp.sh/Tx1YIVV I don't think that's what you need but it's the closest.
0 -
When do you expect that function is implemented?
0 -
Hello Diogo,
Thank you for your message!
Regarding the question you have, we are working on the function. When it will be ready, we will let you know! Thank you for your patience and understanding! If you have any other questions or problems that you encounter, please feel free to ask! We will be happy to help!
Have a nice day and kind regards,
Doina
1 -
While the function is not available, I have made a function to add the privacy policy as a link:
Add this function to functions.php file:
function wpb_hook_javascript_footer() {
?>
<script>
jQuery(document).ready(function(){
jQuery(".brz-label:contains(Accept)").append("<span><a href='https://mydomain.com/privacy-policy' target='_blank'> privacy policy</a></span>");
jQuery(".brz-label:contains(Accept)").css("width", "auto");});
</script>
<?php
}
add_action('wp_footer', 'wpb_hook_javascript_footer');***It is very simple and can be improved ...
I hope it can be useful to you!!
0 -
Excellent - many thanks!
1
Please sign in to leave a comment.
Comments
9 comments