Hi
I have the breadcrumb trail in tpl_header.php which displays ok. I want to copy to the breadcrumb trail display so that it shows on each product page.
I've tried copying the relevant code snippet:
<!-- bof breadcrumb -->
<ul class="back">
<li><?php if (DEFINE_BREADCRUMB_STATUS == '1' && !$this_is_home_page) { ?>
<?php echo $breadcrumb->trail(BREAD_CRUMBS_SEPARATOR); ?>
<?php } ?></li></ul>
<!-- eof breadcrumb -->
Into a table which displays below each product, but all I end up with is this:
trail(BREAD_CRUMBS_SEPARATOR); ?>
I'm probably overlooking something simple but can't figure out what it is?



