Yeah, the issue is with that theme, it is disabling jQuery and loading a different version:
// Load jQuery
if ( !function_exists(core_mods) ) {
function core_mods() {
if ( !is_admin() ) {
wp_deregister_script('jquery');
wp_register_script('jquery', ("//ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"), false);
wp_enqueue_script('jquery');
}
}
core_mods();
}
Comment out the deregister and register functions in this code from functions.php and try using the copy of jQuery built into WordPress instead:
// Load jQuery
if ( !function_exists(core_mods) ) {
function core_mods() {
if ( !is_admin() ) {
//wp_deregister_script('jquery');
//wp_register_script('jquery', ("//ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"), false);
wp_enqueue_script('jquery');
}
}
core_mods();
}
That works great.
The slide next and page thing is doubling….so for now I am just going to choose none and see if there is other post about that.
Thanks
No problem, if your are seeing double nav this is because your theme is adding padding or margin to the nav list items.
yeah, but what if we need to have that jquery version 1.6 for the themes ? It’s not working with Meteor ???
@dabourz In general jQuery seems pretty backwards compatible, I haven’t encountered any jQuery plugins written for older versions like 1.6 that don’t work with jQuery 1.7.1. But if you do need an older version it should still work if it is registered correctly, the most common issue is that it loads jQuery too late, after the Meteor Slides scripts, try playing around with the actions that the function is running on.