【发布时间】:2021-05-29 17:11:34
【问题描述】:
当提供免费送货服务时,我不想隐藏本地取货。删除本地取货没有任何意义,但我不知道如何使用官方代码不删除它。
/**
* Hide shipping rates when free shipping is available.
* Updated to support WooCommerce 2.6 Shipping Zones.
*
* @param array $rates Array of rates found for the package.
* @return array
*/
function my_hide_shipping_when_free_is_available( $rates ) {
$free = array();
foreach ( $rates as $rate_id => $rate ) {
if ( 'free_shipping' === $rate->method_id ) {
$free[ $rate_id ] = $rate;
break;
}
}
return ! empty( $free ) ? $free : $rates;
}
add_filter( 'woocommerce_package_rates', 'my_hide_shipping_when_free_is_available', 100 );
这是我删除 flat_rate1 的尝试,因为对我来说,这是付费选项。同样,我想保持免费送货和本地取货。
add_filter( 'woocommerce_package_rates', 'hide_shipping_except_local_when_free_is_available', 100 );
function hide_shipping_except_local_when_free_is_available($rates) {
$free = array();
foreach ($rates as $rate_id => $rate) {
if ('free_shipping' === $rate->method_id) {
foreach($rates as $rate_id => $rate) {
if ('flat_rate1' === $rate->method_id )
unset($rates[ $rate_id ]);
}
break;
}
}
return !empty( $free ) ? $free : $rates;
}
【问题讨论】:
标签: php arrays wordpress woocommerce shipping-method