Change the sale badge position to before add to cart form
Change the sale badge position to appear before the add to cart form.
add_action('advanced_woo_discount_rules_loaded', function () {
remove_action('woocommerce_before_single_product_summary', 'woocommerce_show_product_sale_flash');
add_action('woocommerce_before_add_to_cart_form', 'woocommerce_show_product_sale_flash', 10);
});