Big thanks, but still having a problem
| Project: | Node breadcrumb |
| Version: | 5.x-2.0 |
| Component: | Code |
| Category: | support request |
| Priority: | normal |
| Assigned: | edhel |
| Status: | closed |
Jump to:
I can't thank you enough for writing this module. Here is a write-up of how it helped me:
http://drupal.org/node/341043#comment-1133738
I still face one problem, though. Within a site section, I have the following menu structure:
PWN+ Networks
-State Networks
-District Networks
Both the sub-links are views urls. The view itself is built from the same content type, but sorting by a different CCK field.
Using node breadcrumb, I was able to choose that CCK content type and 'State Networks' as the menu item. The breadcrumbs for this turned out to be fine. But, I can't choose the 'District Networks' menu item again by setting a rule because the content type is the same.
So, what should I enter in the php code area so that I can choose that CCK content type again and then choose the 'District Networks' menu link which comes from a view?
The page itself is at www.pwnplus.org/network
Thanks in advance.

#1
Enter php-code with condition on cck field (which used on views' filter). E.g.: $node->field_myfield[0]['value'] == 'district'
Use smaller weight for this rule.
#2
Apologies, but I didn't realize you had answered my question. Many thanks and I shall try it out.
#3