Skip to content

Instantly share code, notes, and snippets.

@matheuswd
Created September 10, 2020 19:58
Show Gist options
  • Save matheuswd/abbfdfaaffe35671834294a1ce349179 to your computer and use it in GitHub Desktop.
Save matheuswd/abbfdfaaffe35671834294a1ce349179 to your computer and use it in GitHub Desktop.
Makes the Gift Aid checkbox to be checked by default
<?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