I need the shipping class cost of products.
$order = new WC_Order( $order_id );
$items = $order->get_items();
foreach ($items as $item) {
$product = new WC_Product($item['product_id']);
$shipping_class_id = $product->get_shipping_class_id();
}
How can I fetch shipping class cost based on shipping class id?
答案 0 :(得分:0)
WooCommerce
:运送类别独立于运送区域和方法。送货类别的费用取决于客户所在的位置和所选的送货方式。
所以答案是不可能