Skip to content

Instantly share code, notes, and snippets.

@digitalchild
Created April 22, 2020 06:25
Show Gist options
  • Save digitalchild/f23265023d5830d314c510d7ec9596e9 to your computer and use it in GitHub Desktop.
Save digitalchild/f23265023d5830d314c510d7ec9596e9 to your computer and use it in GitHub Desktop.
Make the apply to be a vendor checkbox for WC Vendors Marketplace checked
add_action( 'woocommerce_register_form', 'load_js' );
function load_js(){?>
<script type="text/javascript">
jQuery('#apply_for_vendor').prop('checked', true);
</script>
<?php }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment