Hello!
if i go to cart without product what's the best way to add a message: Your cart is empty?
http://seratadigala.tioitalia.it/it/il-mio-carrello
Thank you
in the cart default template do a if and else
detect if the cart has products .. if so display the template.. if not show the message
Oky i can't see anything so i've add this code:
it works correctly in my 3.0.18 version and i hope also for future updates
$cart = VirtueMartCart::getCart();
if(sizeof($cart->products) > 0){
echo 'Cart have products';
}
else{
echo 'Your cart is empty';
}
Thank you :)