anushka27 Posted September 21, 2012 Share Posted September 21, 2012 Hi, I want to show only the price of the products, but how can I set it? In the old version I can do this, but I cant find it in version 1.4.9. My site with a dummy product is http://uitverkoopgig...nl/48-sieraden. Can someone help me? Link to comment Share on other sites More sharing options...
tdr170 Posted September 22, 2012 Share Posted September 22, 2012 If you are looking to have an online catalog without the add to cart function as you probably have found out the catalog mode built into Prestashop does not show prices or the add to cart. I supplied a tutorial/tip on how to have an online catalog that would show price but not an add to cart button. Here is that link to that post. http://www.prestashop.com/forums/topic/180043-tip-catalog-style-with-prices/page__fromsearch__1 1 Link to comment Share on other sites More sharing options...
petete2008 Posted October 24, 2012 Share Posted October 24, 2012 La solución es : Buscar en el fichero adminproducts.php <input style="float: left;" type="checkbox" name="available_for_order" id="available_for_order" value="1" '.($this->getFieldValue($obj, 'available_for_order') ? 'checked="checked" ' : '').' onclick="if ($(this).is(\':checked\')){$(\'#show_price\').attr(\'checked\', \'checked\');$(\'#show_price\').attr(\'disabled\', \'disabled\');}else{$(\'#show_price\').attr(\'disabled\', \'\');}"/> y reemplazar por <input style="float: left;" type="checkbox" name="available_for_order" id="available_for_order" value="1" '.($this->getFieldValue($obj, 'available_for_order') ? 'checked="checked" ' : '').' onclick="if ($(this).is(\':checked\')){$(\'#show_price\').attr(\'checked\', \'checked\');$(\'#show_price\').attr(\'disabled\', \'disabled\');}else{$(\'#show_price\').attr(\'disabled\', false);}"/> 1 Link to comment Share on other sites More sharing options...
radus Posted January 16, 2013 Share Posted January 16, 2013 @petete2008 : is this working on a per product basis, or must a condition be inserted like Sales Price > 0 ? [ ex. 2 Free Products in a Pack of 10 Paid + 2 Free, the 2 Free have Sales Price 0.00 $ and blocked to be ordered separatelly when Pack page shows also individual components of the Pack ] Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now