我编写了一个非常小的函数,用于在产品不在购物车中或购物车中该产品的数量少于 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 );
知道为什么吗?我使用了错误的钩子吗? 感谢您的帮助
另外,不是取消安装设置并仅在需要时重新设置,是否有更好的方法说“如果该产品不在购物车中”然后将其删除?
谢谢
好吧,我设法这样解决了:
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 );
现在正在工作。