Jump to content

'show prices' permanently greyed out after upgrade to 1.4.9


Recommended Posts

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

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

  • 2 weeks later...

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

×
×
  • Create New...