如何在注销页面中获取购物车项目的数量,我尝试使用以下代码,它适用于 cart.phtml 但不适用于 logout.phtml
$cart = Mage::getSingleton('checkout/cart')->getItemsCount();
echo 'cart items count: ' . $cart;
$cart = Mage::helper('checkout/cart')->getItemsCount();
echo 'cart items count: ' . $cart;
$cart = Mage::helper('checkout/cart')->getCart()->getItemsCount();
echo 'cart items count: ' . $cart;
我想既然它已经注销了,它就不能再访问了,我应该尝试使用 cookie 获取该信息吗?
提前感谢您的帮助