mrjsanderson Posted October 16, 2012 Share Posted October 16, 2012 Upgraded from 1.4.8 to 1.4.9 but now 'show price' (catalogue product info tab) is permanently greyed out, even after deselecting 'available for order' and price disappears from product page. Can anyone help with this else I will have to edit product.tpl manually to over ride. Regards Jesse Link to comment Share on other sites More sharing options...
mrjsanderson Posted October 16, 2012 Author Share Posted October 16, 2012 Okay. so, I thought it may have been an issue with the import of the previous database but no. I did a fresh install of 1.4.9 on a test domain and by default, this error occurs. Is there a quick fix for this? Full access to test install available if anyone can help. Link to comment Share on other sites More sharing options...
petete2008 Posted October 24, 2012 Share Posted October 24, 2012 I have the same problem. Solution? Thank's 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);}"/> Link to comment Share on other sites More sharing options...
Recommended Posts