yetkind Posted January 25, 2017 Share Posted January 25, 2017 Thank you so much Robin I will reduce options after solved this one, I tried as you said nothing changed now there is no active class even in <a href> <li><a href="#home">HOME</a></li> What I ment is current code give "active" class to <A href> not to <Li> so my menu is not working properly Link to comment Share on other sites More sharing options...
Soma Posted January 25, 2017 Author Share Posted January 25, 2017 The class is on the li if you don't change the options to not do it. You currently add the active class ot the a element yourself in the options. The list tpl misses the %s which will get replaced with the state classes. It should be default 'list_tpl' => '<li%s>||</li>', And default is this 'item_current_tpl' => '<a href="{url}">{title}</a>', Link to comment Share on other sites More sharing options...
Peter Knight Posted January 25, 2017 Share Posted January 25, 2017 What would be best approach to hide certain sub-pages from a specific parent? Here's my menu structure. Home Solutions - Solutions Overview - Solution 1 - Solution 2 Services - Services Overview - Service 1 - Service 2 Blog - Blog Post 1 - Blog Post 2 - Blog Post 3 When I mouse over Solutions and Services, I want to see my child pages as sub-menu items (I have this working) but I don't want my blog posts to be showing as a sub-menu. If I could tell the Module not to display certain templates (blog post), that would solve it for me. Normally I've gotten around this by having my Blog setup as follows Blog - Posts (hidden) - - Blog Post 1 - - Blog Post 2 - - Blog Post 3 That's all good but it does create a longer URLhttp://www.domain.com/blog/posts/blog-post01 than moving the post to the root of Blog and ending up with http://www.domain.com/blog/blog-post01 Cheers Link to comment Share on other sites More sharing options...
Soma Posted January 25, 2017 Author Share Posted January 25, 2017 There's various ways to do it. Simplest maybe to ignore certain templates use the selector option. ie "template!=blog". Link to comment Share on other sites More sharing options...
yetkind Posted January 26, 2017 Share Posted January 26, 2017 (edited) 14 hours ago, Soma said: The class is on the li if you don't change the options to not do it. You currently add the active class ot the a element yourself in the options. The list tpl misses the %s which will get replaced with the state classes. It should be default 'list_tpl' => '<li%s>||</li>', And default is this 'item_current_tpl' => '<a href="{url}">{title}</a>', Thank you so much this is solved my problem for active class but now dropdown dissaperead ? do you have any idea why its happaned ? here is my current code <nav id="menuzord-right" class="menuzord default menuzord-responsive"> <a class="menuzord-brand pull-left flip xs-pull-center mt-20" href="/processwire/"> <img src="<?php echo $config->urls->templates?>/ind/logo.png" alt=""> </a> <?php $treeMenu = $modules->get("MarkupSimpleNavigation"); // load the module $options = array( 'parent_class' => 'parent', // overwrite class name for current parent levels 'current_class' => 'active', // overwrite current class 'has_children_class' => 'dropdown', // overwrite class name for entries with children 'levels' => false, // wether to output "level-1, level-2, ..." as css class in links 'levels_prefix' => 'level-a', // prefix string that will be used for level class 'max_levels' => 2, // set the max level rendered 'firstlast' => false, // puts last,first class to link items 'collapsed' => false, // if you want to auto-collapse the tree you set this to true 'show_root' => true, // set this to true if you want to rootPage to get prepended to the menu 'selector' => 'template!=MediaLibrary', // define custom PW selector, you may sanitize values from user input 'selector_field' => 'nav_selector', // string (default 'nav_selector') define custom PW selector by using a property or field on a page. Use this setting if you want to overwrite the default nav_selector 'outer_tpl' => '<ul class="menuzord-menu">||</ul>', // template string for the outer most wrapper. || will contain entries 'inner_tpl' => '<ul class="dropdown">||</ul>', // template string for inner wrappers. || will contain entries 'list_tpl' => '<li%s>||</li>', // template string for the items. || will contain entries, %s will replaced with class="..." string 'list_field_class' => '', // string (default '') add custom classes to each list_tpl using tags like {field} i.e. {template} p_{id} 'item_tpl' => '<a href="{url}">{title}<span class="indicator"></span></a>', // template string for the inner items. Use {anyfield} and {url}, i.e. {headline|title}, if field is of type image it will return url to image (first image if multiple) 'item_current_tpl' => '<a href="{url}">{title}</a>', // template string for the active inner items. 'xtemplates' => '', // specify one or more templates separated with a pipe | to use the xitem_tpl and xitem_current_tpl markup 'xitem_tpl' => '<a href="{url}">{title}</a>', // same as 'item_tpl' but for xtemplates pages, can be used to define placholders 'xitem_current_tpl' => '<span>{title}</span>', // same as 'item_current_tpl' but for xtemplates pages 'date_format' => 'Y/m/d', // default date formatting for Datetime fields and native created/modified 'code_formatting' => true, // enable or disable code indentations and newslines in markup output 'debug' => false, // show some inline information about rendertime and selectors used as html comments ); echo $treeMenu->render($options); // render menu ?> </nav> and this is html output <ul class="menuzord-menu"> <li class="active"><a href="/processwire/">Home</a></li> <li><a href="/processwire/company/">Company<span class="indicator"></span></a></li> <li class="dropdown"><a href="/processwire/products/">Product & Solutions<span class="indicator"></span></a> <ul class="dropdown"> <li><a href="/processwire/product1/">product1</a></li> I realized my template currently working without implemented to processwire html output is like this <ul class="menuzord-menu"> <li class="active"><a href="#home">HOME</a></li> <li><a href="#">COMPANY<span class="indicator"><i class="fa fa-angle-down"></i></span></a> <ul class="dropdown" style="right: auto; display: none;"> <li><a href="#">item title</a></li> <li><a href="#">item title</a></li> but as I mention in this post 2 quote above out put come like this below and it dropdown is not working how can I output that like the one below... thanks in advance and your patience <ul class="menuzord-menu menuzord-right menuzord-indented scrollable" style="max-height: 400px; display: block;"> <li class="active"><a href="/processwire/">Home</a></li> <li><a href="/processwire/company/">Company<span class="indicator"></span></a></li> <li class="dropdown" style="display: none;"><a href="/processwire/products/">Product & Solutions</a> <ul class="dropdown" style="right: auto;"> <li><a href="/processwire/product1/">product1<span class="indicator"></span></a></li> Edited January 26, 2017 by yetkind Additional information added Link to comment Share on other sites More sharing options...
Soma Posted January 26, 2017 Author Share Posted January 26, 2017 I don't know how your menu dropdown logic works but you have 'has_children_class' => 'dropdown', That adds to the <li classs="..."> and you have 'inner_tpl' => '<ul class="dropdown">||</ul>', 1 Link to comment Share on other sites More sharing options...
yetkind Posted January 27, 2017 Share Posted January 27, 2017 22 hours ago, Soma said: I don't know how your menu dropdown logic works but you have 'has_children_class' => 'dropdown', That adds to the <li classs="..."> and you have 'inner_tpl' => '<ul class="dropdown">||</ul>', Thank you so much menu css come with a template that I bought called "menuzord menu" I don't wanna get in the whole css code which is many but when I changed last thing you mentioned here removed one of the dropdown is now working perfectly.... you saved the day... I think spending to much time on same page I lost my focus thank you for seing that on my behalf!..... Link to comment Share on other sites More sharing options...
Speed Posted January 28, 2017 Share Posted January 28, 2017 I don't know if this have been asked before, but I couldn't find anything that can solve my issues with MSN. I only wonder could MSN hide specific submenu and leave others intact? Allow me to elaborate. On my page tree in PW I have 3 pages that contain children pages in each. Parent1 Child1 Child2 Child3 Parent2 Child1 Child2 Child3 Parent3 Child1 Child2 Child3 The goal is to hide specific sub-menu in parent's name? Only on viewing page. Parent1 Child1 Child2 Child3 Parent2 Child1 Child2 Child3 Parent3 (child menu hidden whole time, no dropdown or hover over and still intact in PW admin only) Here's complete code... <nav id="navDT"> <?php $nav = $modules->get("MarkupSimpleNavigation"); $nav_options = array( 'show_root' => true, 'outer_tpl' => '<ul class="nav">||</ul>', 'inner_tpl' => '<ul class="drop">||</ul>', ); echo $nav->render($nav_options); ?> </nav> If its not possible... Are there any other ways? Thanks in advance Link to comment Share on other sites More sharing options...
kongondo Posted January 28, 2017 Share Posted January 28, 2017 You can use the 'selector' option. See examples here: And the MSN Docs here. 1 Link to comment Share on other sites More sharing options...
Speed Posted January 29, 2017 Share Posted January 29, 2017 2 hours ago, kongondo said: You can use the 'selector' option. See examples here: And the MSN Docs here. Thank you, it worked! If not for another fourm post you posted. I wouldn't know anything about template!= inside selector... MSN doc isn't helping much with example 'selector' => '' why not update and use something like this 'selector' => 'template!={templatename.php}' ? Once again, Thank you Link to comment Share on other sites More sharing options...
rolspace.net Posted February 2, 2017 Share Posted February 2, 2017 (edited) Hi Guys Thanks for the help so far. Still working on a little issue here. I have a menu with submenus. Main menu items go from page to page, the submenus refer to anchors on the pages. I want to highlight (class="current") the current menu-button. when I'm on betrieb.php#team, I want team to show up as "current". And of course when I scroll up and down, it should change to whatever anchor I go. Does anyone have an idea how I can solve this? This is my code so far. it works, but always highlights the menu AND the according submenus at the same time: $treeMenu = $modules->get("MarkupSimpleNavigation"); // load the module $treeMenu->addHookAfter('getItemString', function(HookEvent $event) { $item = $event->arguments('page'); // if the item has more than one parent then it is a subpage if($item->parents->count() > 1) { $event->return = "<a href='{$item->parent->url}#{$item->name}'>$item->title</a>"; } }); $options = array( 'parent_class' => 'page-scroll parent', 'current_class' => 'current', 'has_children_class' => 'page-scroll has_children', 'levels' => true, 'levels_prefix' => 'level-', 'max_levels' => 2, 'firstlast' => false, 'collapsed' => false, 'show_root' => false, 'selector' => '', 'selector_field' => 'nav_selector', 'outer_tpl' => '', 'inner_tpl' => '<ul class="border">||</ul><hr>', 'list_tpl' => '<li%s>||</li>', 'list_field_class' => '', 'item_tpl' => '<a href="{url}">{title}</a>', 'item_current_tpl' => '<a href="{url}">{title}</a>', 'xtemplates' => '', 'xitem_tpl' => '<a href="{url}">{title}</a>', 'xitem_current_tpl' => '<span>{title}</span>', 'date_format' => 'Y/m/d', 'code_formatting' => false, 'debug' => false ); echo $treeMenu->render($options); // render default menu Thanks! R Edited February 2, 2017 by kongondo Code Blocks Link to comment Share on other sites More sharing options...
kongondo Posted February 2, 2017 Share Posted February 2, 2017 @rolisx, Mod Note: Please use code blocks around code in your posts (see the <> icon). Link to comment Share on other sites More sharing options...
kongondo Posted February 2, 2017 Share Posted February 2, 2017 9 hours ago, rolisx said: This is my code so far. it works, but always highlights the menu AND the according submenus at the same time: That, actually, has nothing to do with MSN (from what I can tell). It's called CSS ....the styles are cascading. You need to solve this in your CSS file. Link to comment Share on other sites More sharing options...
Robin S Posted February 2, 2017 Share Posted February 2, 2017 8 hours ago, rolisx said: when I'm on betrieb.php#team, I want team to show up as "current". And of course when I scroll up and down, it should change to whatever anchor I go. This will require a Javascript solution. Just Google for it and you'll find loads of examples and probably a bunch of ready-made jQuery plugins. Here is something: http://codetheory.in/change-active-state-links-sticky-navigation-scroll/ Link to comment Share on other sites More sharing options...
sreeb Posted February 3, 2017 Share Posted February 3, 2017 Hi everyone, I have a question, i'm building a mega menu and i have one little question about ow to use the foreach function for the childeren of the childeren of the root. As in Home Sollution Submenu 1 Link 1 Link 2 Submenu 2 Link 1 Link 2 Etc etc.. I have used the folowing code as a hook. The foreach function does not do the job:( The foreach function must be set for the childeren of the child of the root. Can anyone help me? function customNavItems(HookEvent $event){ $item = $event->arguments('page'); $item2 = $event->arguments('Werkzaamheden'); if($item->title == 'Werkzaamheden'){ $out .= '<li class="mega-menu sub-menu"><a href="#" class="sf-with-ul"><div>'.$item->get("title|name").'</div></a>'; $out .= ' <div class="mega-menu-content style-2 clearfix" style="display: none; width: 1628px;">'; foreach ($rootPage as $children) { $out .= ' <ul class="mega-menu-column col-md-3"> <li class="mega-menu-title"> <div style="text-transform: uppercase!important;font-size:1.1em; margin:20px 0;"> <strong>Test 1</strong> </div> <ul>'; $out .= ' <li><a href="#"><div>sub1</div></a></li>'; $out .= ' <li><a href="#"><div>sub2</div></a></li>'; $out .= ' <li><a href="#"><div>sub3</div></a></li>'; $out .= ' </ul>'; $out .= ' </li>'; $out .= ' </ul>'; } $out .= ' </div>'; $out .= '</li>'; //build the normal li item output or change the item with id 1068 to your needs //add new items that aren't in the normal pagetree or add megamenu items //....do what you want! //$out = '<a href="'.$item->get("url").'">'.$item->get("title|name").'</a>'; $event->return = $out; } } Just found the solution with "foreach($item->children as $child) {" Link to comment Share on other sites More sharing options...
Peter Knight Posted February 14, 2017 Share Posted February 14, 2017 On 25/01/2017 at 6:37 PM, Soma said: There's various ways to do it. Simplest maybe to ignore certain templates use the selector option. ie "template!=blog". Thanks @Soma That was it. Link to comment Share on other sites More sharing options...
Jon Posted February 23, 2017 Share Posted February 23, 2017 Is it possible to list the top level link in the first dropdown? My client seem to be worried about the parent page being missed because of the target audience. For example :- - Home --- Home --- Page --- Page Link to comment Share on other sites More sharing options...
Soma Posted February 23, 2017 Author Share Posted February 23, 2017 No it's not supported as the Module just renders the page structure. But it can be manipulated/faked in some ways with JS. And that's what I do if it's needed, cause it's a usability feature and something that doesn't really belong there, in the nature of a menu UL structure and the source. So I think it's ok to do that client side. Some example to do it. The "has_children" and "parent" come from the module and need to be removed to avoid false styling/information. $navigation = $('.wrapper .navigation'); // generate "overview links“ for each submenu $navigation.find('li:has(ul)').each(function() { $this = $(this); var classes = $this.attr('class'); var $link = $this.find('>a'); var href = $link.attr('href'); var $item = $('<li class="' + classes + '"><a href="' + href + '">' + $link.text() + '</a></li>'); $item.removeClass("has_children"); $item.removeClass("parent"); $this.find('>ul').prepend($item); }); Edit: this is recursive over all levels. So all li's that has a UL. If you only want for the first level you'd adapt the find() to find(">li:has(ul)"). 2 Link to comment Share on other sites More sharing options...
Jon Posted February 24, 2017 Share Posted February 24, 2017 Thanks Soma, I shall give this a try tomorrow its only the first level I require so thanks for that Link to comment Share on other sites More sharing options...
Marco Angeli Posted March 24, 2017 Share Posted March 24, 2017 Hi there, does this wonderful module work with processwire 3? Link to comment Share on other sites More sharing options...
Soma Posted March 24, 2017 Author Share Posted March 24, 2017 Sure. Link to comment Share on other sites More sharing options...
Marco Angeli Posted March 24, 2017 Share Posted March 24, 2017 Very good! Thanks Soma. Link to comment Share on other sites More sharing options...
Jozsef Posted May 4, 2017 Share Posted May 4, 2017 Am I doing something wrong or some of you encountered the same issue? When using the simple navigation module it turns out that the site is loading every single visible and published pages in the page tree with every page request even though the max level is set to 1. Tracy debugger reported over 8000 pages loaded on the home page on a bigger site I made, no wonder it took 15+ seconds to load. I checked on other sites I made with similar results. I swapped the navigation over to a function on the above site and the site got lightning fast again, as I expect from ProcessWire. Is that an expected behaviour or am I doing something wrong? This is the code I used to output the navigation and had v1.3.3 installed: $treeMenu = $modules->get("MarkupSimpleNavigation"); // load the module $menuoptions = array('show_root' => true, 'max_levels' => 1, 'outer_tpl' => "<ul class='topnav clearfix'>||</ul>", 'inner_tpl' => "<ul class='subnav'>||</ul>"); echo $treeMenu->render($menuoptions); // render default menu Link to comment Share on other sites More sharing options...
Soma Posted May 4, 2017 Author Share Posted May 4, 2017 Yeah it has most likely to do with valid children method. Can you test this https://github.com/somatonic/MarkupSimpleNavigation/pull/4 I will have a look at it later and finally make an update. Link to comment Share on other sites More sharing options...
gregory Posted May 5, 2017 Share Posted May 5, 2017 Hi Soma, I need to create a menu with the centered logo as in the attached example. My idea is to create two different menus. How can it be done? Thank you Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now