Disable the Sale badge on the shop page.

Disable the sale badge on the shop page.

// Disable Sale badge in shop page
add_filter('advanced_woo_discount_rules_filter_passed', function ($filter_passed, $rule, $product, $sale_badge, $product_table, $conditionFailed) {
    if (is_shop()) {
        if ($sale_badge == true) {
            return false;
        }
    }
    return $filter_passed;
}, 10, 6);