17488 Posts in 4473 Topics by 1978 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 1396 Views |
-
tracking pages..

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.pngagain, sorry for my bad English
rube
-
Re: tracking pages..

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_-_breadcrumbsIf you really want some sort of history, you'll probably have to implement something on your own using the Session Object or similar.
-
Re: tracking pages..

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\LayoutI 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 -
Re: tracking pages..

22 October 2008 at 8:00am Last edited: 22 October 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
| 1396 Views | ||
|
Page:
1
|
Go to Top |


