I need to remove the header "CATEGORIES" (circled in red) and also the hr (circled in red). I only want the product links to remain on every page.
Can anyone help me out? Thanks in advance. :)
![]()
I need to remove the header "CATEGORIES" (circled in red) and also the hr (circled in red). I only want the product links to remain on every page.
Can anyone help me out? Thanks in advance. :)
![]()
in the copy of english.php in your includes/languages/apple_zen/folder
Find:
Edit what is in between the single quotes but do not delete them- for nothing it should be:Code:// categories box text in sideboxes/categories.php define('BOX_HEADING_CATEGORIES', 'Categories');
Code:// categories box text in sideboxes/categories.php define('BOX_HEADING_CATEGORIES', '');
And you can turn off the <hr> in admin > Configuration > Layout Settings > Categories Separator Between Links.
If you want to remove the whole header you may need to add to your stylesheet
#categoriesHeading {display: none;}
Thanks to both of you so much!!!