Jump to content

Remove "Add to cart" in Prestashop 1.4


Recommended Posts

Hi everyone,
I would simply delete the button "Add to Cart " from the product list and product, with PS 1.4.
I found some good solutions for earlier versions, which I reproduce here for convenience

In product.tpl I replaced this

quantity == 0} style="display:none;"{/if} id="add_to_cart" class="buttons_bottom_block"><input type="submit" name="Submit" value="{l s='Add to cart'}" class="exclusive" /></p> 



whit this

{*
quantity == 0} style="display:none;"{/if} id="add_to_cart" class="buttons_bottom_block"><input type="submit" name="Submit" value="{l s='Add to cart'}" class="exclusive" /></p>*} 



Unfortunately I can not do it with 1.4.
Is there anyone who would know adaptation?

Link to comment
Share on other sites

delete line 363 from product.tpl

quantity <= 0) OR !$product->available_for_order OR (isset($restricted_country_mode) AND $restricted_country_mode) OR $PS_CATALOG_MODE} style="display: none;"{/if} id="add_to_cart" class="buttons_bottom_block"><input type="submit" name="Submit" value="{l s='Add to cart'}" class="exclusive" /></p>

Link to comment
Share on other sites

  • 1 month later...
×
×
  • Create New...