Drupal 7:Pathauto patterns from menu structure hie

2019-03-20 17:43发布

I'm trying to create a Pathauto pattern which looks like "Drupal root/parent_menu_item_name/node_title" where "node_title" is a child of "parent_menu_item_name" in the menu hierarchy.

I've tried many different variations, and nothing works. I've tried the suggestions in Menu path in Pathauto, and none of them works at all. It just ends up outputting the node-title, with nothing before it.

I've got the latest versions of the Token and Pathauto modules installed.

5条回答
Juvenile、少年°
2楼-- · 2019-03-20 18:11

I believe this question has been answered by Kenan:

Kenan's answer

[node:menu-link:parent:url:path]/[node:title]

It works for me, so I'm very happy!

查看更多
干净又极端
3楼-- · 2019-03-20 18:17

The token combination [node:menu-link:parent:url:alias]/[node:menu-link] shall work with the following modules :

  • token : 7.x-1.0-beta3
  • pathauto: 7.x-1.0-rc2

The token patterns seem to vary depending on the version of the token module.

查看更多
一夜七次
4楼-- · 2019-03-20 18:26

This token uses the menu titles of each parent item to build a url:

[node:menu-link:parents:join-path]/[node:title]

So if you have nested content titled: The Future -> Doc Brown -> Flux Capacitor

The above token will print out:

/the-future/doc-brown/flux-capacitor

查看更多
我想做一个坏孩纸
5楼-- · 2019-03-20 18:26

This combination works perfectly for me

[node:menu-link:parents:join-path]/[node:menu-link:title]

with the latest token (7.x-1.5) and pathauto (7.x-1.2).

查看更多
祖国的老花朵
6楼-- · 2019-03-20 18:32

This works for me (for book type nodes): [node:menu-link:parent:title]/[node:title]

Found on: http://www.metachunk.com/blog/drupal-7-path-auto-menu-pattern

查看更多
登录 后发表回答