Flatsome主题woocomerce迷你购物车与数量而不是没有在购物车中的项目

时间:2018-05-02 09:31:26

标签: php wordpress woocommerce

我正在使用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;
     }


    ?>

Mini Cart with no of item count

Before Load Mini Cart

0 个答案:

没有答案