• I have a walker main menu that works great and its a sticky menu as well, but when I customised the comment form the sticky menu still worked but it disappeared. What I mean is all the height of the menu and the border bottom was still there but couldn’t see the menu. This is the code I used to customise the comments.

    $args = array(
    
                        'walker'             =>  null,
                        'max_depth'          =>  '',
                        'style'              =>  'ol',
                        'callback'           =>  null,
                        'end-callback'       =>  null,
                        'type'               =>  'all',
                        'reply_text'         =>  'reply',
                        'page'               =>  '',
                        'per_page'           =>  '',
                        'avatar_size'        =>  64,
                        'reverse_top_level'  => null,
                        'reverse_children'   => '',
                        'format'             => 'html5',
                        'short_ping'         => false,
                        'echo'               => true
    
                    );
    
                    wp_list_comments( $args );

    Even if I take the walker out of the $args its still not visible when fixed.

Viewing 1 replies (of 1 total)
  • Moderator bcworkz

    (@bcworkz)

    Heya scottie,

    I cannot imagine how the two are related. Could you have accidentally changed some other code on the same page affecting the menu? Have you checked your PHP error logs and your browser’s JS console for possible clues?

    I don’t think it would make a difference, but I don’t think ‘reply_text’ is a valid argument.

Viewing 1 replies (of 1 total)
  • The topic ‘walker disappears’ is closed to new replies.