我想对大多数产品禁用(隐藏)“运送到其他地址”,而仅对特定(几个)产品启用。我使用过add_filter( 'woocommerce_cart_needs_shipping_address', '__return_false');
,但是它禁用了所有产品的“运送到其他地址”部分。
答案 0 :(得分:2)
您需要与其他问题类似的代码:
add_filter( 'woocommerce_cart_needs_shipping_address', 'disable_checkout_shipping_address');
function disable_checkout_shipping_address( $needs_shipping_address ) {
$products_ids = array(793, 796);
$found = $others_found = false;
foreach ( WC()->cart->get_cart() as $cart_item ){
if (in_array( $cart_item['data']->get_id(), $products_ids ) ){
$found = true;
} else {
$others_found = true;
}
}
if( $found && ! $others_found )
$needs_shipping_address = true;
else
$needs_shipping_address = false;
return $needs_shipping_address;
}
代码进入您的活动子主题(或活动主题)的function.php文件中。