我正在尝试隐藏购物车中的优惠券代码字段,用于某些排除的产品.我添加了产品类别,并且在优惠券使用中不包含此类别.
摘要限制了购物车,因此一次只允许一种产品.在这种情况下,无需显示排除产品的优惠券代码.验证不会让用户应用优惠券,但是如果他们甚至没有看到优惠券字段,那就更好了.
这是我发现的片段,可找到产品类别并显示一条消息:
// Find product category
add_action( 'woocommerce_check_cart_items', 'checking_cart_items', 12 );
function checking_cart_items() {
// set your special category name, slug or ID here:
$special_cat = 'myproductcategory';
$bool = false;
foreach ( WC()->cart->get_cart() as $cart_item_key => $cart_item ) {
$item = $cart_item['data'];
if ( has_term( $special_cat, 'product_cat', $item->id ) )
$bool = true;
}
// Displays a message if category is found
if ($bool)
echo '<div class="checkoutdisc">A custom message displayed.</div>';
}
这是在购物车中隐藏优惠券代码的通用代码段:
// 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' );
如何使这些功能协同工作?
谢谢
解决方法:
Update: Compatibility with WooComerce 3+
是的,可以使用以下代码组合:
add_filter( 'woocommerce_coupons_enabled', 'conditionally_hide_cart_coupon_field' );
function conditionally_hide_cart_coupon_field( $enabled ) {
// Set your special category name, slug or ID here:
$special_cat = array('clothing');
$bool = false;
foreach ( WC()->cart->get_cart() as $cart_item_key => $cart_item ) {
$wc_product = $cart_item['data'];
// Woocommerce compatibility
$product_id = method_exists( $wc_product, 'get_id' ) ? $wc_product->get_id() : $wc_product->id;
$main_product_id = $cart_item['variation_id'] > 0 ? $cart_item['product_id'] : $product_id;
if ( has_term( $special_cat, 'product_cat', $main_product_id ) )
$bool = true;
}
if ( $bool && is_cart() ) {
$enabled = false;
}
return $enabled;
}
自然地,这会出现在活动子主题(或主题)的function.php文件中,也可能会出现在任何插件文件中.
此代码已经过测试并且可以工作.
参考文献:
> WooCommerce checkout message based on specific product category
> WooCommerce Cart – Conditional Items categories validation