在 "Thank you" 页面显示订单的送货方式
Displaying the shipping method of the order in "Thank you" page
在 WooCommerce 中,我想在 "Thank you"(已收到订单)页面中显示当前订单选择的运输方式的名称…
如何在感谢页面中获取所选运输方式的名称?
我只能得到送货地址,我想显示送货方式名称。
谢谢
如果您查看 WC_Abstract_Order
可用方法,您会发现 get_shipping_method()
将显示您的订单所用运输方式的标题。
现在您可以在您的代码中使用此方法 $order
object 这种方式
echo $order->get_shipping_method();
在 WooCommerce 中,我想在 "Thank you"(已收到订单)页面中显示当前订单选择的运输方式的名称…
如何在感谢页面中获取所选运输方式的名称?
我只能得到送货地址,我想显示送货方式名称。
谢谢
如果您查看 WC_Abstract_Order
可用方法,您会发现 get_shipping_method()
将显示您的订单所用运输方式的标题。
现在您可以在您的代码中使用此方法 $order
object 这种方式
echo $order->get_shipping_method();