Load site_main js only on product and checkout page
Instruction to load the site_main JavaScript file only on product and checkout pages.
add_action('wp_enqueue_scripts', function () {
if(!is_product() && !is_checkout()) {
wp_deregister_script('awdr-main');
}
}, 1000);