Bug : no more class 'stock-disabled' class into body in the last version theme-woocommerce.php:305

Hi,

I use 'stock-disabled' class for display management on product if stock disabled by javascript call.

The last version no more add the class into the body tag. It's activated on :

betheme/functions/theme-woocommerce.php:305

if(!$product->managing_stock()) $classes[] = 'stock-disabled';

It's false, and break my website logic and display. It must be at minimum, but can be improved :

if($product->get_stock_status() === 'outofstock') $classes[] = 'stock-disabled';

Anyway, can you correct it into the next version and be sure you never kill that ?

Thanks,

Mike

Comments

  • Hi,

    We have not changed it in the last version, and it has been like that for a while.

    Can you tell me from which version did you update?

    You can check that in Betheme -> System status.

    Best regards

  • Noooo you update without change this error. Pleas correct it, or tell me how to use the child theme for that. You broke this feature each time .... pleaaaase !

  • The latest is 27.3.3.1, and you not correct it...

  • now betheme/functions/theme-woocommerce.php:303


    Instead : if(!$product->managing_stock()) $classes[] = 'stock-disabled';

    Use : if($product->get_stock_status() === 'outofstock') $classes[] = 'stock-disabled';

  • This function checks if the option "stock managing" is enabled. It does not check (and never was) if the product is "out of stock". That is not what it was created for.

    What you ask now for requires file customization, which, in reference to the Item Support Policy, is not allowed: http://themeforest.net/page/item_support_policy

    So, if you want to modify files and don't know how you should contact your web developer, Item Policy says:

    Item support does not include services to modify or extend the item beyond the original features, style, and functionality described on the item page. For customization services that will help you tailor the item to your specific requirements, we recommend contacting the author to see if they privately offer paid customization services or checking out the great service providers on Envato Studio.

    Thanks

Sign In or Register to comment.