heatherbell wrote: ↑Tue Oct 12, 2021 9:56 am
I expected to work but does not
"[D]oes not" could mean a variety of things.
1. It still displays on the index page.
2. It does not display on the index_nested and index_products page.
3. It does not display on any pages.
4. The site breaks and shows a white screen or error message.
In the file
https://github.com/CE-PhoenixCart/Phoen ... dcrumb.php
If you copy to /templates/override/modules/content/header/ and add at the beginning
Code: Select all
<?php
if (basename(Request::get_page()) === 'index.php' && empty($GLOBALS['cPath']) && empty($_GET['manufacturers_id'])) {
return;
}
?>
does that do what you want? Not display on the welcome page but do display on the category and product listings?
If not, are you on a site where the template is set (in admin) to override and not default?