Skip to content

Instantly share code, notes, and snippets.

@permanart
Created December 14, 2020 04:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save permanart/9d3313470d0aee0b210bb94eae84872f to your computer and use it in GitHub Desktop.
Save permanart/9d3313470d0aee0b210bb94eae84872f to your computer and use it in GitHub Desktop.
Auto Open Coupon Field WooCommerce
add_action( 'wp_footer', 'woocommerce_show_coupon', 99 );
function woocommerce_show_coupon() {
echo '
<script type="text/javascript">
jQuery(document).ready(function($) {
$(\'.checkout_coupon\').show();
});
</script>
';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment