Skip to content

Instantly share code, notes, and snippets.

@maxrice
Last active January 4, 2016 01:49
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 maxrice/8550706 to your computer and use it in GitHub Desktop.
Save maxrice/8550706 to your computer and use it in GitHub Desktop.
WooCommerce - hide the coupon form everywhere, but leave coupons enabled for use with plugins like Smart Coupons and URL Coupons
<?php
// hide coupon form everywhere
function hide_coupon_field( $enabled ) {
if ( is_cart() || is_checkout() ) {
$enabled = false;
}
return $enabled;
}
add_filter( 'woocommerce_coupons_enabled', 'hide_coupon_field' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment