a challenge!!
ok so i need to stop these 2 javascripts
/gundogworld/
wp-content/themes/classipress/includes/
js/jquery.selectBox.
js
/
wp-content/themes/classipress/includes/
js/jquery.selectBox.min.
js
from loading on just this 1 page
https://www.gundogworld.co.uk/events/community/add
would it be the /
wp-content/themes/classipress/includes/reports/report-enqueue.php file that i would need to edit, and withy what code? maybe something like this (edited obviously)
// remove jquery from ONLY the front page
add_action( 'wp_enqueue_scripts', 'my_deregister_javascript' );
function my_deregister_javascript() {
if ( is_page('what goes here??') ) {
wp_deregister_script( 'what goes here??' );
}
}
or maybe its the functions.php lol ??
thanks in advance