AbanteCart Community

Shopping Cart Operations => Support => Topic started by: flyn on July 07, 2014, 02:42:16 PM

Title: Remove Print Button & Icon
Post by: flyn on July 07, 2014, 02:42:16 PM
We do not need the print button nor the icon for our products. Where in the .CSS can I remove it?

.btn disables all and that is not good. Edit.. I just managed to remove the icon at least.

Thanks
Title: Re: Remove Print Button & Icon
Post by: abantecart on July 07, 2014, 09:30:35 PM
Look at the file:

https://github.com/abantecart/abantecart-src/blob/master/public_html/storefront/view/default_html5/template/pages/product/product.tpl

Line: 180

Remove:

<a class="productprint btn btn-large" href="javascript:window.print();"><i
class="icon-print"></i> <?php echo $button_print?></a>
Title: Re: Remove Print Button & Icon
Post by: flyn on July 08, 2014, 06:10:27 AM
Thanks