
Originally Posted by
nikki72
this thread has been great. It's helped me out a lot, however I can not figure out how to get it to not display double bread crumbs across the top of my faq pages.
example:
http://2antioch.org/store/index.php?...s_all&fcPath=1
The ask a question button is not show either.
THanks!
It's got double breadcrumbs, because this mod is poorly coded. It's not supposed to add breadcrumbs, as zen cart already does that in another file. You can open up all the files in includes/templates/YOUR_TEMPLATE/templates/ and if it has this code:
Code:
<?php if (DEFINE_BREADCRUMB_STATUS == '1' || DEFINE_BREADCRUMB_STATUS == '2' ) { ?>
<tr>
<td class="breadCrumb" colspan="2"><?php echo $breadcrumb->trail(BREAD_CRUMBS_SEPARATOR); ?></td>
</tr>
<?php } ?>
remove it.
If the original designer of this mod isn't active, I'll happily clean up the coding, but I won't take over support of the mod, LOL.