This tutorial describes the principles involved.
http://www.zen-cart.com/content.php?...ome-pages-only
For a single sidebox, you would apply the "if" test to your template override copy of the module file for the sidebox - in this case, /includes/modules/sideboxes/your_template/categories.php. (Copy it from /includes/modules/sideboxes/ before making changes.)
Most sidebox module files have a line near the top similar to
$show_sideboxname = true;
Add the if test immediately after this line. In your case, you want to turn the sidebox off for category id 7 (Wine Store) only.
PHP Code:
if ($current_page_base == 'index' and $cPath = '7') {
$show_categories = false;
}
There are many kinds of things you can test depending on the circumstances.
Bookmarks