VirtueMart Forum

VirtueMart 2 + 3 + 4 => General Questions => Topic started by: amymattian on December 05, 2019, 10:23:14 AM

Title: How to show Cart button in cart module ALWAYS?
Post by: amymattian on December 05, 2019, 10:23:14 AM
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
Title: Re: How to show Cart button in cart module ALWAYS?
Post by: jenkinhill on December 05, 2019, 10:38:40 AM
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.
Title: Re: How to show Cart button in cart module ALWAYS?
Post by: amymattian on December 05, 2019, 15:01:25 PM
Thanks! That worked! :)