Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
You should improve your accept rate ;) and what have you tried? Do you have some code? – Stony Oct 8 '12 at 9:50
Well i tried $this->getOrders(); But of course then i would have to extend from History.php. But in the toplinks i want to display 'Shoppingbag' when it's empty. and when it is not empty: 'Shopping bag(3) | Order now'. (if there are three items in the shopping bag.) Well i don't think my code would be of any help here. :P – Weszzz7 Oct 8 '12 at 9:54
Ah, about the accept rate. How exactly do i do this since i have 6 reputation.. :P Kind of new here – Weszzz7 Oct 8 '12 at 9:55
Go to the Question you have asked and mark your Questions as solved if they are correct. – Stony Oct 8 '12 at 9:57
Ah thanks for the tip, i found it :) – Weszzz7 Oct 8 '12 at 10:04

3 Answers

up vote 4 down vote accepted

I found the total item in shopping cart as following.

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

If it does not work,inform me.

share|improve this answer
Ah thanks this did the trick for me :) I would upvote you but my reputation is too low.. – Weszzz7 Oct 8 '12 at 11:25
@user1699577 Thanks,I am also facing a problem.I can not ask question on this site.I can only answer the questions.They have blocked me from asking the question.I don't know why? – Muk Oct 8 '12 at 12:38

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();
share|improve this answer
Ah i tried your code but for some reason it kept giving me an empty array. – Weszzz7 Oct 8 '12 at 11:25

You can try this.

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

if($cart_qty > 0) {
    // Not empty.
} else {
    // Empty.
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.