Skip to content

Instantly share code, notes, and snippets.

@LMNTL
Created May 9, 2019 17:12
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 LMNTL/682b9135360e8cb7a39972690560e240 to your computer and use it in GitHub Desktop.
Save LMNTL/682b9135360e8cb7a39972690560e240 to your computer and use it in GitHub Desktop.
Always show the top discount code field on the checkout page for Paid Memberships Pro
// Always show the top discount code field on the checkout page for Paid Memberships Pro
function my_pmpro_always_show_discount_code()
{
?>
<script>
jQuery(document).ready(function() {
jQuery('#other_discount_code_tr').show();
jQuery('#other_discount_code_p').hide();
jQuery('#other_discount_code').focus();
});
</script>
<?php
}
add_action('pmpro_checkout_before_submit_button', "my_pmpro_always_show_discount_code");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment