OK
I managed to get this to work. So for anyone who this could be useful for in the future....
In order to declare breadcrums (the Navigation bar at the top of each page) that looks like this
Home > Category > Product
in the Product template
i.e CATALOG > VIEW > THEME > DEFAULT > TEMPLATE > PRODUCT> PRODUCT.TPL
I done the following...
In CATALOG > CONTROLLER > PRODUCT > PRODUCT.PHP after LINE 174 I insterted
Code: Select all
$this->data['breadcrumbs'] = $this->document->breadcrumbs;
You can then call breadcrumbs within PRODUCT.TPL like you do in LAYOUT.TPL
Code: Select all
<?php foreach ($breadcrumbs as $breadcrumb) {
echo $breadcrumb['separator']; ?>
<a href="<?php echo $breadcrumb['href']; ?>">
<?php echo $breadcrumb['text']; ?></a>
<?php } ?>