I’ve been playing with the MLN plugin and it’s great… but now there’s two things I’d really like to be able to do:
1) Is there a way to have either a drop down or a straight menu item for Log IN/OUT and Register? I tried placing "<?php wp_register(); ?>" as an example in Custom1 code but all it does is place that literally.
2) Is there any way to turn off the links on page menu items? For example, on my site http://www.prototypeonline.com/saugus you’ll see Teams>Varsity>Coaches… what I need is to eliminate the links for the Teams and Varsity pages only because they are irrelevant.
On item 2), what I’m trying to do is "unlink" WP pages, not my own custom pages. I’ve looked at other plugins like page-link-to but that doesn’t help to eliminate the link, just to create a dif one. If anyone knows of a plugin that would do that please point me in the right direction!
I don’t know of any plugins which can do that. It probably is possible, but you would need to do some custom programming to either manipulate the wp_list_pages function or rebuild an eqivalent function yourself.
You can definitely use the custom code option for this. It just won’t dynamically add them to the menu each time you add a new page. When you add a new page to your site, you would need to add a link to it in your menu. I used this method on http://dunedinicehockey.hellyer.kiwi/ back when I was first building dropdown menus (the site doesn’t use a dropdown anymore).