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

Posted

tags:

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

<?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 WooCommere - 免费提供隐藏所有其他送货方式的主要内容,如果未能解决你的问题,请参考以下文章

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

php 删除“woocommerce_before_main_content”和“woocommerce_result_count”也删除“woocommere_breadcrumb”

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

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

php培训技巧全部免费大放送

php培训技巧全部免费大放送