php [USPS送货方式]要删除所有USPS优先统一费率信封,只留下小,中,大平价信箱,添加t

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php [USPS送货方式]要删除所有USPS优先统一费率信封,只留下小,中,大平价信箱,添加t相关的知识,希望对你有一定的参考价值。

/**
 * Remove USPS Flat rate envelopes from the available options
 * Once added the customer will not see any rates for envelopes
 * Only Small, Medium, and Large Flat Rate boxes will be used
 */
add_filter( 'wc_usps_flat_rate_boxes', 'custom_usps_flat_rate_boxes' );
function custom_usps_flat_rate_boxes( $flat_rate_boxes ) {

	unset($flat_rate_boxes["d29"]);
	unset($flat_rate_boxes["d30"]);
	unset($flat_rate_boxes["d63"]);
	unset($flat_rate_boxes["d16"]);
	unset($flat_rate_boxes["d38"]);
	unset($flat_rate_boxes["d40"]);
	unset($flat_rate_boxes["d42"]);
	unset($flat_rate_boxes["d44"]);
	unset($flat_rate_boxes["d13"]);

	unset($flat_rate_boxes["i33"]);
	unset($flat_rate_boxes["i30"]);
	unset($flat_rate_boxes["i63"]);
	unset($flat_rate_boxes["i8"]);
	unset($flat_rate_boxes["i29"]);
	unset($flat_rate_boxes["i13"]);

	return $flat_rate_boxes;

}

以上是关于php [USPS送货方式]要删除所有USPS优先统一费率信封,只留下小,中,大平价信箱,添加t的主要内容,如果未能解决你的问题,请参考以下文章

php [USPS送货方式]要将USPS包更改为信封以便修复尺寸,请将其添加到主题的functions.php文件中:

在 Magento 中启用 USPS

EasyPost USPS - 如何购买 Media Mail 货件?

我正在尝试使用 Shippo 获取要在美国境内发送的 USPS 运输标签,但似乎无法显示任何费率

如何验证我的 USPS IMpb 条形码是不是正确?

text USPS更改地址代码