php WooCommerce - 在免费提供时隐藏所有其他送货方式

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php WooCommerce - 在免费提供时隐藏所有其他送货方式相关的知识,希望对你有一定的参考价值。

<?php

/**
 * 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 );


以上是关于php WooCommerce - 在免费提供时隐藏所有其他送货方式的主要内容,如果未能解决你的问题,请参考以下文章

php 如果在结账时使用优惠券,请删除WooCommerce中的免费送货服务

当 WooCommerce 3 中提供免费送货时,隐藏细节统一费率

WooCommerce - 当免费送货可用时隐藏其他送货方式

以编程方式为 WooCommerce 订阅中的购物车项目设置免费试用

php [WooCommerce Core]在主题激活时设置WooCommerce图像尺寸

php [WooCommerce Core]在主题激活时设置WooCommerce图像尺寸