PDA

View Full Version : breadcrumb


Manuel94
07-23-2013, 01:55 PM
Hello, is there a way to stop the breadcrumb on some pages?

Lynne
07-23-2013, 04:19 PM
You could put a conditional around it to not show it one some pages.

Manuel94
07-23-2013, 08:23 PM
You could put a conditional around it to not show it one some pages.

What can I use conditional and how?

Lynne
07-24-2013, 02:00 AM
You've given me no information whatsoever to help you write a condition. You need to be way more specific if you want specific help.

Manuel94
07-24-2013, 12:14 PM
You've given me no information whatsoever to help you write a condition. You need to be way more specific if you want specific help.

I wish the bredcrumb is visible only in the pages of the forum, then I would delete some pages like the homepage forum, login, register, etc. ...
Can you help me?

Lynne
07-24-2013, 04:54 PM
Then I would guess you could use THIS_SCRIPT in your condition.

<vb:if condition="!in_array(THIS_SCRIPT,array('register','login','in dex'))">
breadcrumb code in navbar template
</vb:if>

Manuel94
07-24-2013, 05:55 PM
Then I would guess you could use THIS_SCRIPT in your condition.

<vb:if condition="!in_array(THIS_SCRIPT,array('register','login','in dex'))">
breadcrumb code in navbar template
</vb:if>

Where should I put this?

Lynne
07-25-2013, 04:28 PM
around your breadcrumb code in the navbar template.

Manuel94
07-28-2013, 08:08 PM
around your breadcrumb code in the navbar template.

Thank you very much!