Posted by setfree on April 27, 2007 at 10:39pm
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?
Comments
Count items in cart
Try this...
<?
if (count(cart_get_items()) > 0)
{
display your link;
}
?>