ログアウトページでカートアイテムの数を取得するにはどうすればよいですか?次のコードを使用しようとしました.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 を使用してその情報を取得する必要がありますか?
助けてくれてありがとう