Created
September 10, 2020 19:58
-
-
Save matheuswd/abbfdfaaffe35671834294a1ce349179 to your computer and use it in GitHub Desktop.
Makes the Gift Aid checkbox to be checked by default
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 gift_aid_default_checked() { ?> | |
<script> | |
jQuery("input[name=give_gift_aid_accept_term_condition]").prop("checked", true); | |
</script> | |
<?php } | |
add_action( 'give_donation_form_after_submit', 'gift_aid_default_checked' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment