Created
April 8, 2021 15:46
-
-
Save matheuswd/4110bee3cf46d919527fc94f0260e140 to your computer and use it in GitHub Desktop.
This codes makes the Mailchimp checkbox to be required by default. The user will not be able to donate without checking the newsletter checkbox.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function required_givewp_mailchimp() { ?> | |
<script> | |
jQuery("input[name=give_mailchimp_signup]").prop("required", true); | |
</script> | |
<?php } | |
add_action( 'give_donation_form_after_submit', 'required_givewp_mailchimp' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment