Archived topic
Problem with responsive menu
13 replies · Started by Jesús on November 3, 2017
Hello, I can't expand the responsive menu. Thanks!
Hello I tryed it but I can't see it. Then I deactivated the GP Premium plugin and the responsive menu already appers, but I activate it again and it disappears.
I see a lot of jQuery errors on your site which is not causing by GP: https://s1.postimg.org/7g6he64kmn/2017-11-06_0819.png
Can you try disable all non-GP plugins and leave it so we can see?
Thanks!
All plugins except "GP premium" are disabled now. Thanks
Can you try updating to the latest GPP 1.5 release candidate? https://generatepress.com/gp-premium-1-5-alphabeta/
I have copied the snippet to the functions.php of my child theme but I can't get the update.
Might have to wait a few minutes to get the notification.
I have already updated the plugin and the problem continues.
Now it's a different error.
Do you have this code added in GP Hooks?:
<script type="text/javascript" charset="utf-8">
// Cambiar lo de debajo para los diferentes sliders. Ejemplos en http://flexslider.woothemes.com/index.html //
$(window).load(function() {
$('.flexslider').flexslider({
animation: "slide"
});
});
// Cambiar lo de arriba para los diferentes sliders. Ejemplos en http://flexslider.woothemes.com/index.html //
</script>
If so, can you remove it? It's likely causing the errors.
Yes, that was the problem. Now it's good. Why was this problem happening? Thanks!
Javascript errors break the rest of the javascript on the page.
If you have Flexslider installed on the site, this would be your code:
<script type="text/javascript" charset="utf-8">
// Cambiar lo de debajo para los diferentes sliders. Ejemplos en http://flexslider.woothemes.com/index.html //
jQuery(window).load(function() {
jQuery('.flexslider').flexslider({
animation: "slide"
});
});
// Cambiar lo de arriba para los diferentes sliders. Ejemplos en http://flexslider.woothemes.com/index.html //
</script>
That's right! Thanks!
You're welcome :)