This snippet allows you to remove the coupon code form field from only the cart page – leaving it on display on the checkout.
/**
* Snippet Name: WooCommerce Remove Coupon Code Field From Cart
* Snippet Author: ecommercehints.com
*/
function ecommercehints_remove_coupon_code_cart_field( $enabled ) {
if ( is_cart() ) {
$enabled = false;
}
return $enabled;
}
add_filter( 'woocommerce_coupons_enabled', 'ecommercehints_remove_coupon_code_cart_field' );