Code-Snippets-Functions/Execute a function on a child site/GiveWP/check-optin-automatically.txt
2020-07-02 14:53:17 -06:00

8 lines
221 B
Text

function my_give_focus_custom_amount() { ?>
<script>
jQuery('input.give_fee_mode_checkbox').prop('checked', true);
</script>
<?php }
add_action( 'give_post_form_output', 'my_give_focus_custom_amount' );