Skip to content

Instantly share code, notes, and snippets.

@MinaPansuriya
Created October 28, 2016 11:25
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 MinaPansuriya/9451d7262f4390c3171e8fe2f2bd19ef to your computer and use it in GitHub Desktop.
Save MinaPansuriya/9451d7262f4390c3171e8fe2f2bd19ef to your computer and use it in GitHub Desktop.
/**
* @Title: WooCommerce Hide/Disable Coupons
* @Author: Mina Pansuriya
* @Website: http://minapansuriya.com
*/
add_filter( 'woocommerce_coupons_enabled', 'pbs_woo_disable_coupon' );
function pbs_woo_disable_coupon( $coupons_enabled ) {
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment