Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save AnanthFlycart/78e00ebf221eb40a4bcc23417f578206 to your computer and use it in GitHub Desktop.

Select an option

Save AnanthFlycart/78e00ebf221eb40a4bcc23417f578206 to your computer and use it in GitHub Desktop.
// Disable Sale badge for Free Shipping
add_filter('advanced_woo_discount_rules_filter_passed', function ($filter_passed, $rule, $product, $sale_badge, $product_table, $conditionFailed) {
if ($rule->rule->discount_type == 'wdr_free_shipping') {
if ($sale_badge == true) {
return false;
}
}
return $filter_passed;
}, 10, 6);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment