thatigibbyguy Posted January 23, 2013 Share Posted January 23, 2013 I have a template file following Ryan's planet.php template starter demo. The structure is processwire/site/templates/planet.php Inside of planet.php, I have inserted the code you have provided. When I run that page, your code just prints out exactly as is. Nothing else happens. Is that a little more clear? Link to comment Share on other sites More sharing options...
Soma Posted January 23, 2013 Author Share Posted January 23, 2013 Ah you mean it shows the php code on the Website? This is php code and you have to put it in <?php ... ?> to make it work. Sorry but this is so obvious that I didn't think of it. Link to comment Share on other sites More sharing options...
thatigibbyguy Posted January 23, 2013 Share Posted January 23, 2013 Ah, yeah sorry myself. I'm not a php developer at all, just html/css/jquery. Just trying to learn something new. Thanks man. 2 Link to comment Share on other sites More sharing options...
diogo Posted January 23, 2013 Share Posted January 23, 2013 Hold onto it. You'll get there Link to comment Share on other sites More sharing options...
alan Posted January 23, 2013 Share Posted January 23, 2013 @thatigibbyguy I clearly remember being like you (no PHP) and I am still quite a PHP lite-weight. Luckily by the time I came to PW I had some PHP behind me because it meant I mostly had to only focus on PW. But all I can say is that I am SO glad I spent some time getting the basics of PHP because it's allowed me to use PW which I've found to be the best CMS I've ever used, no contest. And using it has lead to learn more PHP due to the excellent and helpful examples in this forum. In case it helps, these two are resources that you'll either already know of or if not may be good places to get more PHP mojo: http://phpmaster.com/ and of course http://php.net/. Good luck! 2 Link to comment Share on other sites More sharing options...
thatigibbyguy Posted January 23, 2013 Share Posted January 23, 2013 Thanks Alan! 1 Link to comment Share on other sites More sharing options...
alan Posted January 23, 2013 Share Posted January 23, 2013 You're most welcome! Link to comment Share on other sites More sharing options...
pwusr Posted January 28, 2013 Share Posted January 28, 2013 Thanks for sharing the excellent module & the hard work! Kindly let me know if the following is possible: Main Menu Item -- Sub Menu 1 -- Sub Menu 2 Few of the main menu items (on the site I am doing) has no page associated with it & opens the page for the first sub menu item. Please let me know how, if this is possible. Thanks a lot in advance. Link to comment Share on other sites More sharing options...
Wanze Posted January 28, 2013 Share Posted January 28, 2013 Few of the main menu items (on the site I am doing) has no page associated with it & opens the page for the first sub menu item. Please let me know how, if this is possible.Thanks a lot in advance. One solution I used: Give your main menu items that should redirect to the firt sub menu a "redirect" template. Then in your template, simply add this code: $children = $page->children; if (count($children)) { $session->redirect($children->first()->url); } else { //This page has no children to redirect... throw a 404 or do other work throw new Wire404Exception(); } 1 Link to comment Share on other sites More sharing options...
Soma Posted January 28, 2013 Author Share Posted January 28, 2013 You could also have a template "redirect" with only a title and a page field (single page) to select any page you want to go. Then in the code you should be able to write array('item_tpl' => '<a href="{redirect_page|url}">{title}</a>') So it would take the url of the referenced page in the page field if found, or if not it takes the url of the page itself. Assuming the page field is named "redirect_page". Haven't tried but should work. EDIT: This wasn't really working until added support for page field url in version 1.1.8. 1 Link to comment Share on other sites More sharing options...
pwusr Posted January 28, 2013 Share Posted January 28, 2013 Thank you very much Wanze & Soma for your replies. Link to comment Share on other sites More sharing options...
doolak Posted January 30, 2013 Share Posted January 30, 2013 I am trying to use an additional code for the inner items, just for pages which have a specific value in one field. E.g. if a page has a textfield "extra_title" which is not empty the inner items should have an extra code part <span class="nav_extra_title"><span> . Has anybody an idea how this could be solved? Link to comment Share on other sites More sharing options...
Soma Posted January 30, 2013 Author Share Posted January 30, 2013 It's not possible to do conditional markup generation. So you're maybe better off building you're menu with your own code. Which is quite simple. Only workaround I see is using JS to generate it. array('item_tpl' => '<a href="{url}" data-extratitle="{extra_title}">{title}</a>') Then use jquery. $('#menu a[data-extratitle!=""]').each(function(){ $(this).prepend($("<span class='nav_extra_title'>"+$(this).data('extratitle')+"</span>")); }); 2 Link to comment Share on other sites More sharing options...
doolak Posted January 30, 2013 Share Posted January 30, 2013 Thanks for the hint using the data attribute - i have to admit i never used it before... In the template i am using: array ('item_tpl' => '<a href="{url}"><span class="nav_extra_title" data-extratitle="{nav_extra_title}"><span>{nav_extra_title}</span></span>{title}</a>') the jQuery i tried is: $('span.nav_extra_title[data-extratitle=""]').each(function(){ alert("hjgf"); $(this).toggleClass("kjh"); }); The script is located in a file which is loaded in the head.inc - the alert works fine ;-) - but i don't know how to change the class "nav_extra_title" to another or maybe add a class to it. I tried so many variations but it does not work... Link to comment Share on other sites More sharing options...
Soma Posted January 30, 2013 Author Share Posted January 30, 2013 If your doing the opposite you better just do this: array ('item_tpl' => '<a href="{url}"><span class="nav_extra_title">{nav_extra_title}</span>{title}</a>') Then use this to hide empty spans $("#menu span:empty").remove(); I'm not sure, but most commonly you execute the script before dom even loaded. So if the script is like this in the header it will never work. A technique is to execute it after dom load. $(document).ready(function(){ // your code }); Or short method $(function(){ // your code }); Otherwise I don't know. 1 Link to comment Share on other sites More sharing options...
doolak Posted January 30, 2013 Share Posted January 30, 2013 Yes, i thought the same and tried it with $(document).ready(function() already - but it did not work... or to be honest, i just thought it wouldn't work... I just inspected the source code with Safari and did not switch to the DOM tree or verified it in CSS Edit - at last both possibilities which are described above work fine! Thanks for your help again, Soma! Link to comment Share on other sites More sharing options...
Soma Posted January 30, 2013 Author Share Posted January 30, 2013 I changed my code above example: It's not needed to each them just: $("#menu span:empty").remove(); Link to comment Share on other sites More sharing options...
arjen Posted February 13, 2013 Share Posted February 13, 2013 Hi Soma, I've read through the entine thread and documentation and most things are clear. I've got one question though: How would you add current-parent class to a parent? For example: I am on /services/service-1/. The menu renders as following: Home --Services (this is the page I would like to add another class) ----Service 1 (current, which applies a current class) ----Service 2 --About --Contact Offcourse I can use jQuery to do this, but I was wondering if the mighty MarkupSimpleNavigation might be able to do this. Thanks! Link to comment Share on other sites More sharing options...
doolak Posted February 13, 2013 Share Posted February 13, 2013 Hi arjen, the parent page will have the "has_children_class" and if it's the actual parent it will have the "parent_class", too. So it can be styled with CSS through: li.parent.has_children { color: #fff } 1 Link to comment Share on other sites More sharing options...
arjen Posted February 13, 2013 Share Posted February 13, 2013 Thanks doolak! Could use some more sleep this month. Link to comment Share on other sites More sharing options...
doolak Posted February 13, 2013 Share Posted February 13, 2013 Thanks doolak! Could use some more sleep this month. I know this too well... 1 Link to comment Share on other sites More sharing options...
Marty Walker Posted March 8, 2013 Share Posted March 8, 2013 I'm using this to get my navigation from a Projects page and below. It's perfect, looks exactly how I want it. PW page tree: - Home -- Projects --- Project type ---- Project ---- Project etc Is there a way can I go about inserting a page from another part of the page tree at the top of the output? Regards Marty Link to comment Share on other sites More sharing options...
Wanze Posted March 8, 2013 Share Posted March 8, 2013 Marty, I think you could set the outer tpl to an empty string and add the ul-tags and your page manually: <?php $customPage = $pages->get('/.../'); echo "<ul>"; echo "<li><a href='{$customPage->url}'>{$customPage->title}</a></li>"; //Add your entry above all others echo $modules->get('MarkupSimpleNavigation')->render(array('outer_tpl' => '')); echo "</ul>"; Not tested and just an idea, maybe Soma has a better solution Cheers Edit: Damn I need to get some sleep NOW 1 Link to comment Share on other sites More sharing options...
Marty Walker Posted March 8, 2013 Share Posted March 8, 2013 Of course! Not enough (or maybe too much) coffee and not enough active brain cells in circulation this morning. Thanks Wanze! Link to comment Share on other sites More sharing options...
Soma Posted March 8, 2013 Author Share Posted March 8, 2013 Another would be to hand the items to the outer_tpl. $customPage = $pages->get('/.../'); $item = "<li><a href='{$customPage->url}'>{$customPage->title}</a></li>"; echo $modules->get('MarkupSimpleNavigation')->render(array('outer_tpl' => "<ul>$item||</ul>")); 2 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