Jump to content

How to enable "Show Price" for not available for order product on Prestashop v 1.4.9


Recommended Posts

I'm using PrestaShop v 1.4.2.5 & v 1.4.9.0 for my websites.

 

In PrestaShop v 1.4.2.5 i can enable "show price" using tick mark in unavailable for order products.

(disabled "available for order" by removing tick mark)

 

But i can not do it on PrestaShop v 1.4.9.0. I can not put a tick mark for "show price".

How can i enable it.

 

I want to show price for unavailable for order products. we use it on out of stock product.

 

Please see the attached image.

 

Please help me to resolve this.

 

Have a nice day.

post-281742-0-21785600-1349680647_thumb.png

Link to comment
Share on other sites

I am having my servers in process of moving but if I remember correctly there is a setting under preferences then product page that you can allow out of stock orders. I would check that if it's not there just click on preferences tab and check on this page

 

Hope this helps

Clayton

Link to comment
Share on other sites

Dear clayton29657. Thank you for your reply.

Yes. I can allow to order out of stock product. its working correctly.

I want to "show price" for out of stock and upcoming products on my website.

In PrestaShop v 1.4.2.5 i can enable "show price" using tick mark.

But i can't do it on PrestaShop v 1.4.9.0. I can't put a tick mark for "show price".

 

I did not upgrade it. i've moved my old shopping cart to new domain name. its running on same server space with different domain name.

I've download Prestashop 1.4.9 from prestashop official website and install it to new server space using my old domain name (used on PS v 1.4.2.5)

 

I've sent a my old shop link to your private message box. i want to do this.

 

Please help me to resolve it.

 

Have a nice day.

Cool D

Edited by White Lion (see edit history)
Link to comment
Share on other sites

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

  • 4 years later...
×
×
  • Create New...