Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Contributor Ron Rennick

    (@wpmuguru)

    GSM isn’t for moving menus to different locations on your site. It only allows you to change what menu is shown as the secondary menu.

    I don’t know if you ever figured out how to fix this problem. I had the same problem but I fixed it with the following code added t0 the child theme functions.php

    //* Reposition the secondary navigation menu
    remove_action( ‘genesis_entry_footer’, ‘genesis_do_subnav’ );
    add_action( ‘genesis_after_header’, ‘genesis_do_subnav’ );

    The remove action and add action position can be adjusted to wherever it needs to be removed from or to. This link may be helpful to you for this: https://my.studiopress.com/snippets/navigation-menus/

    IF this adds the secondary nav to the correct place but doesn’t remove it from the footer, then just use css to make the footer disappear…

    .site-footer .nav-secondary {
    display: none;
    )

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Moving Secondary Menus to header’ is closed to new replies.