• Michael

    (@michaelrule4)


    This occurs when resizing the window to the point that you’re switching between the mobile and desktop theme. If you open and then keep the menu closed in the mobile theme, the menu complete disappears if you resize to the desktop theme. My description might not be so clear so I made a video to clarify: https://www.youtube.com/watch?v=P1WbDQTuUuA

    (This isn’t my site BTW, I’ve just seen this error occur across all default versions of this theme)

Viewing 6 replies - 1 through 6 (of 6 total)
  • Anonymous User 12851872

    (@anonymized-12851872)

    hi,

    weird, the address of your site?
    can be a javascript problem.
    such disabled plugins?

    Thread Starter Michael

    (@michaelrule4)

    My site is http://politicallyincorrecttruth.com it’s a child theme of the Point theme but you can find this problem across any other Point themed site.

    Anonymous User 12851872

    (@anonymized-12851872)

    hi,

    This is not a theme child, not good.
    the child theme style.css must call the style.css of the parent theme and not to be a copy of the parent theme style.css.
    As you did Point update are worthless, your theme ‘child’ is not affected by updates from the parent theme.
    Read This

    [ Moderator note: link fixed, please use the WordPress.org page when you can ]

    http://codex.wordpress.org/Child_Themes

    I did like you, move from pc to mobile mode mode, I watched your video, the menu is still there.
    you have this problem with all browsers?

    Thread Starter Michael

    (@michaelrule4)

    Thank you for pointing out that my theme is not setup correctly as a child theme. I’ll make sure to fix that. I’ve tested this problem on IE11 and Chrome 37. You have to make sure you’ve opened the menu once and then keep it closed when you resize back to desktop mode. It even happens on the preview theme hosted by WordPress https://wp-themes.com/point/?TB_iframe=true&width=1239&height=567. This problem is affecting all Point theme users by default right now.

    Anonymous User 12851872

    (@anonymized-12851872)

    I just successfully reproduce the disappearance of the menu with Chrome 38

    where did my previous message?

    Anonymous User 12851872

    (@anonymized-12851872)

    It is already a link to jquery
    http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js

    the passage go mobile to computer mode in the menu, to this javascript

    $(function() {
    var pull = $(‘#pull’);
    menu = $(‘nav ul’);
    
    $(pull).on(‘click’, function(e) {
    e.preventDefault();
    menu.slideToggle();
    });
    
    $(window).resize(function(){
    var w = $(this).width();
    
    if(w > 800 && menu.is(‘:hidden’)) {
    menu.removeAttr(‘style’);
    }
    });
    
    $(‘li’).on(‘click’, function(e) {
    var w = $(window).width();
    if(w < 800 ) {
    menu.slideToggle();
    }
    });
    
    $(‘.panel’).height($(window).height());
    
    });

    Can be register on the forum of the author and tell him
    http://community.mythemeshop.com/Forum/3-free-theme-support/

    but your visitors do not have to change the mode, so the bug is not a problem.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Menu Disappearing after Window Resize’ is closed to new replies.