Hide "Cart" menu item when cart is empty?

setfree - April 27, 2007 - 22:39

I can't believe I didn't find this addresses when I searched the forums, so it must be super-simple. How do I hide the CART menu item when the cart is empty?

Count items in cart

seitenmanufaktur - June 22, 2007 - 11:39

Try this...

<?
   
  if (count(cart_get_items()) > 0)
{
    display your link;
  } 
  
?>

 
 

Drupal is a registered trademark of Dries Buytaert.