FAQ & Trouble shooting

In this video you you will learn how to edit the menu when you use ATR Advanced Menu

    • After installing the plugin I get errors

      Most errors pops up when no menu is assigned to the theme menu location.>נר .< Go to Appearance -> Menus panel in your site admin. Click on “Manage Locations” tab. Use the GUI assign the menu to a location with the pull-down options and save.

    • I changed the menu code in header.php and now the site is broken

      Make sure the plugin is activated.
      I it is activated (and still there is an error) try changing the theme and see if you get the site to work.
      If it works with the other theme, check again the code in header.php. Make sure you use the exact code like here:

      First comment the theme call to the menu:

      //wp_nav_menu( array( 'theme_location' => 'primary', 'menu_id' => 'primary-menu', 'walker' => new atr_accessible_megamenu_walker() ) );
      

      Now enter this code just right after it (between the <?php and ?>)

      wp_nav_menu( array(
      'theme_location' => 'primary',
      'menu_id' => 'primary-menu',
      'container' => 'div',
      'echo' => true,
      'items_wrap' => '<div class="megamenu"><ul>%3$s</ul></div>',
      'container_class' => 'LayoutGrid LayoutCenter PanelDiffuseShadow PanelFillExtraLight',
      'menu_class' => 'atr_accessible_megamenu',
      'walker' => new atr_accessible_megamenu_walker()) );
Skip to content