回答:
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