mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-05 12:32:23 +08:00
8 lines
221 B
Text
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' );
|