Show discount bar in shop or category page before add to cart button
Display discount bar on shop or category pages before the "Add to Cart" button.
// Show discount bar in shop/category/loop page before add to cart button
add_action('woocommerce_after_shop_loop_item', function() {
global $product;
do_action('advanced_woo_discount_rules_load_discount_bar', $product);
}, 1);