How to show Cart button when product is out off stock?

ThemeBurn SupportForumsOpenCart ThemesBurnEngineHow to show Cart button when product is out off stock?

This topic has been marked as resolved.

Hi,

How to show Cart button when product is out off stock?

This is must be without possibility to order product of course. This step I can do in admin to mark “Show Out Of Stock Warning” – “Yes”. But anyway Cart button I would like to see, not “Out off stock”.

Just if you find time to answer for me. :)
If will not get answer don’t afraid – 5 stars for support will be ever ;)

BR

February 21, 2019 at 1:05 pm #67273

Hi,

We will add improvements in the next theme version about the cart button. We will always show the button unless chosen otherwise.

If you want you can modify a file until the update arrives:

1) Open system/vendor/BurnEngine/catalog/plugin/ProductPlugin.php

2) Find this line and remove it:

&& ($product['quantity'] > 0 || $this->engine->getOcConfig()->get('config_stock_checkout'))

3) Find this code line:

if (!$this->engine->getOcConfig()->get('config_stock_checkout') ||  $this->getThemeData()->store_common['disable_checkout_stock_status_name'] == $event['data']['stock']) {

and replace it with:

if ($this->getThemeData()->store_common['disable_checkout_stock_status_name'] == $event['data']['stock']) {

4) Find this code line:

$product['show_stock'] = $settings['show_stock'] && $product['quantity'] < 1 && !$config->get('config_stock_checkout');

and replace it with:

$product['show_stock'] = false;

BR,
ThemeBurn team

February 22, 2019 at 4:38 pm #67285

Hi,

Thank you!

P. S.
But if you want do this correction in update better don’t do it, because now I see result is bad, because text “Out Of Stock” still I see. That’s mean I see “Add to Cart” and upper “Out Of Stock”.

BR

 JAZZLT
February 22, 2019 at 5:15 pm #67297

Our bad! Please check the modification again.

BR,
ThemeBurn team

February 22, 2019 at 5:30 pm #67302

:) Thank you!

 JAZZLT
February 22, 2019 at 5:32 pm #67303

Glad we’ve helped, mate :)

BR,
ThemeBurn team

February 28, 2019 at 2:18 pm #67338
Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.