답변:
Mage::helper('checkout/cart')->getItemsCount() -- return shopping cart items count means how many sku add to shopping cart.
Mage::helper('checkout/cart')->getSummaryCount() -- return shopping cart items summary (suppose you add sku1 6 qty and sku2 3 qty = total 9 qty return)
이 방법으로 getItemsCount가 작동합니다.
Mage::helper('checkout/cart')->getCart()->getItemsCount();
그렇지 않으면 getItemsCount 행 위에 이것을 추가하십시오.
Mage::getSingleton('core/session', array('name'=>'frontend'));
그리고 요약 카운트 :
$count = $this->helper('checkout/cart')->getSummaryCount(); //get total items in cart