简体   繁体   中英

Magento How to check if the shopping cart is empty or not?

I am trying to check if the shopping cart is empty or not. I am trying to do this from a static block and from a phtml file.

Anyone know how to do this?

Thanks in advance

I was able to find the total count of items in the shopping cart using the following code:

$totalItemsInCart = Mage::helper('checkout/cart')->getItemsCount();

If it does not work, let me know.

You can try this.

$cart_qty = (int) Mage::getModel('checkout/cart')->getQuote()->getItemsQty();

if($cart_qty) {
    // Not empty.
} else {
    // Empty.
}

I think this could help:

http://blog.decryptweb.com/empty-cart-magento/

You can try something like this:

$checkout_cart = Mage::getSingleton('checkout/cart');
$items = $checkout_cart->getItems();

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM