Hi,
is there a way to ALWAYS show the CART Button in the shopping cart module, even if there is no products in the cart?
NOw the Cart button shows up ONLY when there is a product in the cart. We would like the button show ALWAYS. Is there a way to do this?
- Anne
For the default VM cart module I used this in an override of modules/mod_virtuemart_cart/tmpl/defult.php
Find:
<?php if ($data->totalProduct) echo $data->cart_show; ?>
Change to:
<?php echo $data->cart_show; ?>
Quick and dirty, probably not correct code but it worked.
Thanks! That worked! :)