FedEx Shipping 未显示在 magento onepage 中
FedEx Shipping Not Showing in magento onepage
我已经配置了 FedEx Shipping
和设置,但它没有在前端的一页运输方式块中显示。
我在联邦快递日志中发现错误,错误是:
"SOAP-ERROR: Encoding: Element 'Major' has fixed value '13' (value '10' is not allowed)".
我该如何解决这个问题?
这种类型的错误是由于 Major Element 引起的,因此请查看
中的 Fedex.php 文件
app/code/core/Mage/Usa/Model/Shipping/Carrier
然后找到Major,你会看到整数,它是你的联邦快递的版本号wsdl版本号
所以从
检查 wsdl 版本
app/code/core/Mage/Usa/etc/wsdl/FedEx
在这里您将看到 wsdl 文件并检查其版本号并使用 Major Element Value 更改该版本号
喜欢
'Major' => '5',
希望对您有所帮助:)
我已经配置了 FedEx Shipping
和设置,但它没有在前端的一页运输方式块中显示。
我在联邦快递日志中发现错误,错误是:
"SOAP-ERROR: Encoding: Element 'Major' has fixed value '13' (value '10' is not allowed)".
我该如何解决这个问题?
这种类型的错误是由于 Major Element 引起的,因此请查看
中的 Fedex.php 文件app/code/core/Mage/Usa/Model/Shipping/Carrier
然后找到Major,你会看到整数,它是你的联邦快递的版本号wsdl版本号
所以从
检查 wsdl 版本app/code/core/Mage/Usa/etc/wsdl/FedEx
在这里您将看到 wsdl 文件并检查其版本号并使用 Major Element Value 更改该版本号 喜欢
'Major' => '5',
希望对您有所帮助:)