我最近在我的商店更新了WooCommerce 2.6,他们更新了他们的运输系统.在达到特定订单价值并触发免运费之前,我使用此选项隐藏付费送货选项:
/**
* woocommerce_package_rates is a 2.1+ hook
*/
add_filter( 'woocommerce_package_rates', 'hide_shipping_when_free_is_available', 10, 2 );
/**
* Hide shipping rates when free shipping is available
*
* @param array $rates Array of rates found for the package
* @param array $package The package array/object being shipped
* @return array of modified rates
*/
function hide_shipping_when_free_is_available( $rates, $package ) {
// Only modify rates if free_shipping is present
if ( isset( $rates['free_shipping'] ) ) {
// To unset a single …
Run Code Online (Sandbox Code Playgroud)