@gregd111: It’s actually loaded from script adventurous-custom.min.js
which you will find in JS folder inside Adventurous folder. You can view original source in file adventurous-custom.js
. Then create new adventurous-custom.js
in your child theme folder and then add the following code in your child theme functions.php
file:
function adventurous_child_remove_script() {
wp_dequeue_script( 'adventurous-custom' );
}
add_action( 'wp_enqueue_scripts', 'adventurous_child_remove_script', 20 );
function adventurous_child_add_script() {
wp_dequeue_script( 'adventurous-custom', get_stylesheet_directory_uri() . '/js/adventurous-custom.js', array( 'waypoints' ), '20150330', true );
}
add_action( 'wp_enqueue_scripts', 'adventurous_child_add_script', 20 );
We don’t recommend changing it. But if you really want then first you need to build child theme. For child theme, refer to http://catchthemes.com/blog/create-child-theme-wordpress/. Then you need to de