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?
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
Try this...
<?
if (count(cart_get_items()) > 0)
{
display your link;
}
?>