php 来自https://docs.woocommerce.com/document/hide-other-shipping-methods-when-free-shipping-is-availa

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 来自https://docs.woocommerce.com/document/hide-other-shipping-methods-when-free-shipping-is-availa相关的知识,希望对你有一定的参考价值。

/**
 * 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 来自https://docs.woocommerce.com/document/hide-other-shipping-methods-when-free-shipping-is-availa的主要内容,如果未能解决你的问题,请参考以下文章

PHP 来自php脚本的Linux shell命令

PHP 来自PHP的HTTP POST,没有cURL

如何使用 PHP 显示来自 Amazon S3 的图像?

用来自 php 的数据填充 flash 中的数组

PHP需要来自***目录的文件

php 剥离MS Word HTML。来自php.net