Skip to main content

This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.

We've moved the forum!

Please use forum.silverstripe.org for any new questions (announcement).
The forum archive will stick around, but will be read only.

You can also use our Slack channel or StackOverflow to ask for help.
Check out our community overview for more options to contribute.

Archive /

Our old forums are still available as a read-only archive.

Moderators: martimiz, Sean, Ed, biapar, Willr, Ingo

tracking pages..


Go to End


4 Posts   1908 Views

Avatar
Rube_25

Community Member, 36 Posts

21 October 2008 at 9:26am

hi everybody

my query is as follows:

I would like to know how to do, that the pages that I visit has a tracking pages..

as have several pages

I show them this picture page.png

again, sorry for my bad English

rube

Avatar
bummzack

Community Member, 904 Posts

21 October 2008 at 10:15am

This looks a lot like a breadcrumb navigation.
You can do this easily with the built in page-control ($Breadcrumbs): http://doc.silverstripe.com/doku.php?id=built-in-page-controls#site_navigation_-_breadcrumbs

If you really want some sort of history, you'll probably have to implement something on your own using the Session Object or similar.

Avatar
Rube_25

Community Member, 36 Posts

22 October 2008 at 6:05am

thanks

in the "templates \ Includes"

I made a new file called: Breadcrumbs.ss

<% if Level(2) %>
  <div class="breadcrumbs">
    $Breadcrumbs
  </div>
<% end_if %>

and in the folder:
templates\Layout

I put in my file Page.ss as follows:

<div class="typography">
	<% if Level(2) %>
	  	<% include BreadCrumbs %>
	
	<% end_if %>
		$Content
<% include GalleryPageContent %>
		$Form
		$PageComments
		
</div>

Anything I am doing wrong?
Because I do not have the result..

Thanks
Rube

Avatar
vstrazz

Community Member, 63 Posts

22 October 2008 at 8:00am

Edited: 22/10/2008 8:00am

Make sure you are calling the file with the right case.

example. you have function BreadCrumbs(){ ...

and you call $breadcrumbs on your page. you will get nothing. it has to match.

This would be Correct in this instance, $BreadCrumbs