Home Forums WoodMart support forum Event On problems countdown Reply To: Event On problems countdown

#33963

Artem Temos
Keymaster

Hi,

You can use the following code to disable our theme countdown timer script

function woodmart_dequeue_script() {
        wp_dequeue_script( 'woodmart-countdown' );
    }
add_action( 'wp_print_scripts', 'woodmart_dequeue_script', 10020 );

Regards