Hello,
I am using the release candidate of GP 3.X and in this theme the sticky navigation is not working if I jquery is disabled
is sticky navigation dependent on jquery?
I have added this in my functions.php
// Disable Jquery
add_filter( 'wp_enqueue_scripts', 'change_default_jquery', PHP_INT_MAX );
function change_default_jquery( ){
if ( ! is_admin() ) {
wp_dequeue_script( 'jquery');
wp_deregister_script( 'jquery');
}
}
With this the sticky navigation doesn’t seem to work, when I comment out this function then the sticky navigation is working
Regards
Deepak