function exclude_plugin_scripts_on_specific_page() {
// Fetch pageID
$target_page_id = 123;
// disable script and style
if ( is_page( $target_page_id ) ) {
wp_dequeue_script( 'plugin-script-handle' ); // replace the plugin handle
wp_dequeue_style( 'plugin-style-handle' ); // replace the style handle
}
}
add_action( 'wp_enqueue_scripts', 'exclude_plugin_scripts_on_specific_page', 99 );
For example to disable Crisp on the page id 202209
function exclude_plugin_scripts_on_specific_page() {
$target_page_id = 202209;
if ( is_page( $target_page_id ) ) {
wp_dequeue_script( 'crisp' );
}
}
add_action( 'wp_enqueue_scripts', 'exclude_plugin_scripts_on_specific_page', 99 );