Add a test to your sidebox file.
Copy /includes/modules/sideboxes/categories.php to /includes/modules/sideboxes/your_template/categories.php, and find this
PHP Code:
* @version $Id: categories.php 2718 2005-12-28 06:42:39Z drbyte $
*/
$main_category_tree = new category_tree;
Add a new line above $main_category_tree:
PHP Code:
if (!$this_is_home_page) {
and at the bottom of the file add a new line
}
to get
PHP Code:
require($template->get_template_dir($column_box_default, DIR_WS_TEMPLATE, $current_page_base,'common') . '/' . $column_box_default);
}
?>
Bookmarks