Show Countdown Timer on WooCommerce Products Grids Using ShortCodes
<?php
/**
* Call Countdown Timer in product loop below product name using shortcode.
* This inherit product's timer settings and follow campaign rules.
*/
add_action('woocommerce_after_shop_loop_item', 'wcct_shop_loop_timer_display', 5);
if (!function_exists('wcct_shop_loop_timer_display')) {
function wcct_shop_loop_timer_display() {
echo do_shortcode('[finale_countdown_timer skip_rules="no"]');
}
}