Show discount table in shop or category page before add to cart button

Display a discount table on shop/category pages before "Add to Cart" button.

// Show discount table 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_table', $product);
 }, 1);