Problem with Theme Bouquet
-
Hello,
i found a bug or a problem with a theme, where no jquery is loaded.
At some Themes (for example with Bouquet-Theme) the View of the Galerie is on Top 0 Left 0 fixed – it wont appear in the center, like before.I fixed it with a child-theme where i manual add jQuery Library with this Code in functions.php:
function my_init_method() {
if (!is_admin()) {
wp_deregister_script( ‘jquery’ );
wp_register_script( ‘jquery’, ‘https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js’);
wp_enqueue_script( ‘jquery’ );
}
}
add_action(‘init’, ‘my_init_method’);Sincerely Monti
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘Problem with Theme Bouquet’ is closed to new replies.