Home Forums WoodMart support forum problem loading featured products Reply To: problem loading featured products

#95882

Artem Temos
Keymaster

Try to add the following PHP code snippet to the child theme functions.php file to fix this

function woodmart_custom_enqueue_scripts() {
    woodmart_enqueue_script( 'woodmart-countdown' );
}
add_action( 'wp_enqueue_scripts', 'woodmart_custom_enqueue_scripts', 11000 );