我正在使用WooCommerce中的购物车小部件-> mini-cart.php
我正在通过AJAX
向其中添加产品,并且本人已经向其中添加了一些元素。标准显示了购物车中的小计价格,但我想显示其后的运费以及之后的总价格(subtotal + shipping)
。
因此购物车将如下所示:
- Products in cart
- Subtotal
- Shipping costs
- Total price (shipping + subtotal)
我已将总价格与此code
相加:
<p><?php echo WC()->cart->get_cart_total(); ?></p>
但是此回显的价格与小计的价格相同,因为未添加运费。有人可以帮我增加运输费用吗?一些钩子或代码。
答案 0 :(得分:0)
要在购物车页面(或结帐页面)中获取并显示所选的送货方式标签(以及其他相关数据,如果需要):
foreach( WC()->session->get('shipping_for_package_0')['rates'] as $method_id => $rate ){
if( WC()->session->get('chosen_shipping_methods')[0] == $method_id ){
$rate_label = $rate->label; // The shipping method label name
$rate_cost_excl_tax = floatval($rate->cost); // The cost excluding tax
// The taxes cost
$rate_taxes = 0;
foreach ($rate->taxes as $rate_tax)
$rate_taxes += floatval($rate_tax);
// The cost including tax
$rate_cost_incl_tax = $rate_cost_excl_tax + $rate_taxes;
echo '<p class="shipping-total">
<strong class="label">'.$rate_label.': </strong>
<span class="totals">'. WC()->cart->get_cart_shipping_total() .'</span>
</p>';
break;
}
}