0
我有一個關於minicart例如一個問題:如果我在我的車3種獨特的產品與每個30時,minicart顯示90Minicart產品量顯示Magento的
總額怎樣才能使minicart展示獨特產品的數量,那麼只有3個?
我有一個關於minicart例如一個問題:如果我在我的車3種獨特的產品與每個30時,minicart顯示90Minicart產品量顯示Magento的
總額怎樣才能使minicart展示獨特產品的數量,那麼只有3個?
在代碼中將$this->getSummaryCount()
替換爲Mage::helper('checkout/cart')->getItemsCount();
。
應用程序/設計/前端/ your_theme /默認/模板/結帳/車/ minicart.phtml
$_cartQty = Mage::helper('checkout/cart')->getItemsCount();
if(empty($_cartQty)) {
$_cartQty = 0;
}