How to remove “Add to cart” link from frontpage and all other pages?
1ST SOLUTION :
Open following files:
catalog/view/theme/xtremeshop/template/module/featured.tpl catalog/view/theme/xtremeshop/template/product/category.tpl catalog/view/theme/xtremeshop/template/product/manufacturer_info.tpl catalog/view/theme/xtremeshop/template/product/search.tpl catalog/view/theme/xtremeshop/template/product/special.tpl...and remove following code:
<span class="box-add-to-cart"><a onclick="addToCart('<?php echo $product['product_id']; ?>');">Add to Cart →</a></span>
================================ 2ND SOLUTION:
Open:catalog/view/theme/xtremeshop/css/stylesheet.cssfind .box-add-to-cart selector and put inside following code:
display:none;