Vaibhav Shahu
Vaibhav Shahu

Reputation: 380

How to check whether Cart contain any nominal(isRecurring) item Magento

How to check whether Cart contain any nominal(isRecurring) item in Magento.

I have found one function isRecurring but i don't know how to use this function in cart. Can anyone know any other code(function) to check nominal item in cart ?

Thanks in advance

Upvotes: 0

Views: 719

Answers (1)

Vaibhav Shahu
Vaibhav Shahu

Reputation: 380

I found the answer which worked in my case

$cart = Mage::getSingleton('checkout/cart');

$items = $cart->getItems();
  foreach ($items as $item) { 
    if($item->getProduct()->getIsRecurring()){
       your code.............
     }
    }

Hope this help some one

Upvotes: 1

Related Questions