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

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php [USPS送货方式]要将USPS包更改为信封以便修复尺寸,请将其添加到主题的functions.php文件中:相关的知识,希望对你有一定的参考价值。

/**
 * USPS 4.0 introduced the ability for envelopes to be flexible you can disable this with this function
 * Simply set the type to 'envelope' instead of 'package' for any of the flat rate services that USPS lists as envelopes
 */

add_filter( 'wc_usps_flat_rate_boxes', 'custom_usps_flat_rate_boxes' );
function custom_usps_flat_rate_boxes( $flat_rate_boxes ) {
    
    // Priority Mail Express Envelopes
    $flat_rate_boxes["d13"]["type"] = 'envelope';
    $flat_rate_boxes["d30"]["type"] = 'envelope';
    $flat_rate_boxes["d55"]["type"] = 'envelope';
    $flat_rate_boxes["d63"]["type"] = 'envelope';
    $flat_rate_boxes["d98"]["type"] = 'envelope';
    
    // Priority Mail Envelopes
    $flat_rate_boxes["d16"]["type"] = 'envelope';
    $flat_rate_boxes["d29"]["type"] = 'envelope';
    $flat_rate_boxes["d38"]["type"] = 'envelope';
    $flat_rate_boxes["d40"]["type"] = 'envelope';
    $flat_rate_boxes["d42"]["type"] = 'envelope';
    $flat_rate_boxes["d44"]["type"] = 'envelope';
    
    // International Priority Mail Express
    $flat_rate_boxes["i13"]["type"] = 'envelope';
    $flat_rate_boxes["130"]["type"] = 'envelope';
    
    // International Priority Mail
    $flat_rate_boxes["i8"]["type"]  = 'envelope';
    $flat_rate_boxes["129"]["type"] = 'envelope';

    return $flat_rate_boxes;

}

以上是关于php [USPS送货方式]要将USPS包更改为信封以便修复尺寸,请将其添加到主题的functions.php文件中:的主要内容,如果未能解决你的问题,请参考以下文章

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

在 Magento 中启用 USPS

text USPS更改地址代码

USPS地址更正

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

python pdf_usps_label_only.py