Replies: 0
Hi I need to activate this plugin only on a certain page only as it is breaking another instances of an owl carousel I set up myself throughout site.
I have tried this but it doesn’t work at this stage:
// DEREGISTER ENJOY INSTAGRAM
add_action( 'wp_print_scripts', 'my_deregister_javascript', 100 );
function my_deregister_javascript() {
if ( !is_page('connect') ) {
wp_deregister_script( 'aggiungi_script_instafeed_owl' );
}
}
Help Appreciated