
Originally Posted by
KThompson
what was your cure I have the same problem
In multisite module you can configure the site root category by defining var CATEGORIES_ROOT in the config_site files
Changes to file categories_ul_generator.php from the css menu mod:
About line 25
find
Code:
class zen_categories_ul_generator {
var $root_category_id = 0,
replace with
Code:
class zen_categories_ul_generator {
var $root_category_id = CATEGORIES_ROOT,
about line 56:
multisit mod has a cat_filter function for compatiblity with other mods
find
Code:
$categories = $db->Execute($categories_query);
replace with
Code:
$categories = $db->Execute(cat_filter($categories_query));
and about line 63:
find
Code:
function buildBranch($parent_id, $level = 1, $submenu=false) {
if ($parent_id != 0) {
replace with
Code:
function buildBranch($parent_id, $level = 1, $submenu=false) {
if ($parent_id != CATEGORIES_ROOT) {
Have fun!
Grtz Lenny