Is it possible to have the breadcrumb also on the edit of the node?
I search a patch like in http://drupal.org/node/303178 or just a workaround for the new Version 2.0.

Comments

Benjamin S’s picture

Status: Active » Closed (works as designed)

ok, now I use a workaround.

I add for each Content-Type an Custom Breadcrumb for Path with the specific path:
*/edit
For the Breadcrumb visibility I insert:
return ((node_load((int)str_replace(array('/','node','edit') ,'',$_SERVER["REQUEST_URI"]))->type) == 'news');
now I can insert the Titles an Paths.

works for me;-)

windm’s picture

I´m looking for the same kind of solution - especially for the user-profile-edit pages...
Maybe interesting: I already have the modules "me" (me-aliases) and content_profile in place... and now I need to change the breadcrumbs for the /user/[nid]/edit or /user/myaccount/edit pages.
Apart from using the version with the [nid] or the "myaccount" replacement I expected, that I could simply set up the breadcrumb for /user/*/edit (and others for user/*/edit/profile etc.) with the placeholder "*"...

Breadcrumbs for paths works perfectly for /user/myaccount but not for the user/*/edit or user/*/edit/*.

[edit]
aaaaaah.
took me a minute to find the "Use wildcard pattern matching in paths" in the settings... ok... that needs to be checked to make it work...

nagiek’s picture

Version: 6.x-2.0-rc1 » 7.x-2.x-dev
Status: Closed (works as designed) » Active

Is there an equivalent solution for Drupal 7? Specifically the 7.x-2.x-dev branch? I haven't seen anything that could duplicate this functionality.

liquidcms’s picture

Category: feature » bug

i'll change this to a bug report as there is a module addon for Paths; which as far as i can tell does not work for edit pages.

liquidcms’s picture

Status: Active » Closed (works as designed)

seems as though my theme is messing up the correct breadcrumb that CB module is setting on node edit page... so marking this as works as designed.

btw, my theme is based on Omega, switching to Bartik and crumbs are correct.