Memok Posted February 6, 2013 Share Posted February 6, 2013 Hi this is my first post I would like to use prestashop as a catalog. I activated the option "catalog mode" in admin pannel and it works, but in product description it appears the add to cart button (not working but visible),and I would like to replace it with a different function: MORE INFO ABOUT THIS PRODUCT. Is It possible some How??? Thank you for the help. M Link to comment Share on other sites More sharing options...
Valérie Assetskaya Posted February 6, 2013 Share Posted February 6, 2013 Hi, You need to modify templates on product page. For instanse, in /themes/default/product.tpl change {if (!$allow_oosp && $product->quantity <= 0) OR !$product->available_for_order OR (isset($restricted_country_mode) AND $restricted_country_mode) OR $PS_CATALOG_MODE} <span class="exclusive"> <span></span> {l s='Add to cart'} </span> {else} to {if (!$allow_oosp && $product->quantity <= 0) OR !$product->available_for_order OR (isset($restricted_country_mode) AND $restricted_country_mode) OR $PS_CATALOG_MODE} MORE INFO ABOUT THIS PRODUCT {else} It will work for default theme. Best regards. 1 Link to comment Share on other sites More sharing options...
Memok Posted February 6, 2013 Author Share Posted February 6, 2013 thank you for the prompt help. In the way you suggest i can change the sentence and that is very helpfull. I did it. Now I would like to add a button "MORE INFO ABOUT THIS PRODUCT" which will allows custumers to send me a messagge and in mail's object there should be product's reference . I think I'm not able to do this by coding, can you suggest me an extension to do this. Many thanks Link to comment Share on other sites More sharing options...
Recommended Posts