Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save sarancartrabbit/b479523a0033b6792fc51c14b1c56cea to your computer and use it in GitHub Desktop.
Save sarancartrabbit/b479523a0033b6792fc51c14b1c56cea to your computer and use it in GitHub Desktop.
Woo Discount Rules: Show Discount bar only on stock product for product page
add_filter('advanced_woo_discount_rules_advance_table_based_on_rule', function ($advanced_layout, $rule, $discount_calculator, $product, $product_price, $html_content){
if(!$product->is_in_stock()){
$advanced_layout = [];
}
return $advanced_layout;
},10,6);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment