text Woocomerce删除优惠券

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text Woocomerce删除优惠券相关的知识,希望对你有一定的参考价值。

// hide coupon field on cart page
function hide_coupon_field_on_cart( $enabled ) {
	if ( is_cart() ) {
		$enabled = false;
	}
	return $enabled;
}
add_filter( 'woocommerce_coupons_enabled', 'hide_coupon_field_on_cart' );
// hide coupon field on checkout page
function hide_coupon_field_on_checkout( $enabled ) {
	if ( is_checkout() ) {
		$enabled = false;
	}
	return $enabled;
}
add_filter( 'woocommerce_coupons_enabled', 'hide_coupon_field_on_checkout' );

以上是关于text Woocomerce删除优惠券的主要内容,如果未能解决你的问题,请参考以下文章

text Woocomerce在向购物车添加其他特定商品时删除特定购物车商品

text Woocomerce类别页面添加分页

text Woocomerce退回产品柜台

text Woocomerce - 显示当前产品attr

text Woocomerce添加当前产品attr(仅)值

text Woocomerce - 添加当前产品的名称和值