如果产品不在购物车中或购物车中该产品的数量少于6个,我写了一个非常小的功能来禁用安装作为一种方法(从表费率运输插件)。
这有效,但只有当我点击"更新购物车"按钮,而不是,例如,当我点击购物车。
这是函数,直接来自我的自定义主题中的function.php文件:
function disable_installation_for_less_than( $rates ) {
global $woocommerce;
$items = $woocommerce->cart->get_cart();
$installation = $rates['table_rate_shipping_installation'];
foreach ( $items as $item => $values ) {
$productID = $values['product_id'];
$productQuantity = $values['quantity'];
unset( $rates['table_rate_shipping_installation'] );
if ( $productID == 2412 ) {
if ( $productQuantity < 6 ) {
unset( $rates['table_rate_shipping_installation'] );
} else {
array_push($rates, $installation);
}
}
}
return $rates;
}
add_filter( 'woocommerce_package_rates', 'disable_installation_for_less_than', 10, 3 );
知道为什么吗?我使用错误的钩子吗? 谢谢你的帮助
此外,不是取消设置安装并仅在需要时重新设置它,是否有更好的方式来说明&#34;如果此产品不在购物车中&#34;然后删除这个?
感谢
答案 0 :(得分:0)
好的,我设法解决了这个问题:
function disable_installation_for_less_than( $rates ) {
global $woocommerce;
$items = $woocommerce->cart->get_cart();
$showInstallation= false;
foreach ( $items as $item => $values ) {
$productID = $values['product_id'];
$productQuantity = $values['quantity'];
if ( $productID == 2412 ) {
$showInstallation= true;
if ( $productQuantity < 6 ) {
unset( $rates['table_rate_shipping_installation'] );
}
}
}
if ($showInstallation== false){
unset( $rates['table_rate_shipping_installation'] );
}
return $rates;
}
add_filter( 'woocommerce_package_rates', 'disable_installation_for_less_than', 10, 2 );
现在正在运作。