How do I get pathauto under Drupal 7 to generate a URL alias by the full menu path?
|
|
Just an update in case anyone comes across this with a more recent version of Pathauto/Token. This worked for me: [node:menu-link:parents:join-path]/[node:menu-link] |
|||
|
|
I ended up using:
Heavy caution though: If the node does not have a menu link, you'll end up without an automatically aliased page. On the bright side, this might make you aware of orphan pages. (Consider it a feature!) Note that using the pattern:
will only give the node's menu link, not that of the parent (which would be needed to reference the parent's path). Or the pattern:
throws an error in my instance of Drupal 7 about invalid tokens (even though I have the token module installed). |
|||
|
|
|
I think it has to be this pattern now:
"path" instead of "alias" |
|||||||||
|
If the node is not in the menu, then it does not create an alias. Otherwise this seems to work for n-tier menus. |
||||
|
|
|
You'll need to install the contrib Token module as well -- although a lot of the features of Token are part of core in D7, some of the edge case tokens (like the full menu path of a given node) aren't provided by core automatically. With that installed, I believe that [node:menu-link:parent] or [node:menu-link:parent:url] should work. |
|||||
|
|
The pattern that works for me is the following:
I also intalled the Token module like Eaten suggested. Don't know if |
||||
|
|
|
If you're attempting to make aliases for pages that are 3rd level or deeper, for example:
and you want the alias for Level 3 page to look like
Notice that I added |
||||
|
|
Enjoy!
|
||||
|
|
|
This is the solution I use:
It will separate parent menu items with a dash. That is what I need. |
|||
|
|

