Last active
August 29, 2015 14:27
-
-
Save eltondev/4dc6ce4cc4c2a65bd66d to your computer and use it in GitHub Desktop.
Hide Cupom Cart / Checkout WooCommerce
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// hide coupon on cart | |
function hide_coupon_on_cart( $enabled ) { | |
if ( is_cart() ) { | |
$enabled = false; | |
} | |
return $enabled; | |
} | |
add_filter( 'woocommerce_coupons_enabled', 'hide_coupon_on_cart' ); | |
// hide coupon on checkout | |
function hide_coupon_on_checkout( $enabled ) { | |
if ( is_checkout() ) { | |
$enabled = false; | |
} | |
return $enabled; | |
} | |
add_filter( 'woocommerce_coupons_enabled', 'hide_coupon_on_checkout' ); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment