我正在使用Flatsome主题Wordpress woocommerce主题。现在我想在标题中的迷你购物车中添加产品数量。目前它不包含添加到购物车中的项目。在wp-content / themes / flatsome / template-parts /header/partials/element-cart.php页面我已经获得了产品到迷你购物车的数量,但是在加载时它将在迷你购物车中加载原始的项目数量
<?php
foreach ( WC()->cart->get_cart() as $cart_item_key => $cart_item ) {
$lefteye = $cart_item['_uni_cpo_data']['uni_cpo_cl_boxes_left'];
$righteye = $cart_item['_uni_cpo_data']['uni_cpo_cl_boxes_right'];
$neqqty = $lefteye + $righteye;
echo $neqqty;
}
?>