Epiktetus
Joined: 25 Aug 2006 Posts: 1
|
Posted: 25 Aug 2006 - 6:04 pm Post subject:
Using breadcrumbs on every page but the root
|
|
|
I've got breadcrumbs, and they're working great, but I don't really need them on the root page. I've been trying to figure out how to use an IF, but I'm pretty new to Typo3 in general and TS is kicking my butt. Here's what I've got so far:
| Line: |
Code: |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| |
# Breadcrumb cObject builder
lib.breadcrumbs = HMENU
lib.breadcrumbs.special = rootline
lib.breadcrumbs.1 = TMENU
lib.breadcrumbs.1 {
NO.allWrap = |*| <span class="topnav"> » | </span> |*|
ACT = 1
ACT.allWrap = |*| <span class="topnav_act"> » | </span> |*|
NO.if {
value = 1
equals.field = {page:uid}
negate = 1
}
}
|
|
Show complete code
|
Everything above the IF works great, but the IF just doesn't seem to do anything. I've been trying to piece it all together but obviously I'm lost.
Thanks in advance |
|