Hello,
I am using JA Ores with Joomla 1.5 and JACL Pro (from Byostech) for the ACL. I notice that the access levels created with JACL PRO do not work in the mainmenu on the menu position. (The standard Joomla access levels do work).
From a Yootheme template I know that they made a modification in yoomenu.php the template/html/mod_mainmenu directory. See the modification code below. Probably something like this should be done in a file of the JA Ores template. But which one?
[PHP]if ($node->name() == ‘ul’) {
foreach ($node->children() as $child)
{
// Start JACLPlus Modification
if( defined(‘_JACL’) ) {
if (!JACLPlus::inList($child->attributes(‘access’), $user->get(‘jaclplus’, ‘0’))) {
$node->removeChild($child);
}
} else
// End JACLPlus Modification
if ($child->attributes(‘access’) > $user->get(‘aid’, 0)) {
$node->removeChild($child);
}
}
}
[/PHP]
If some ones can help met with? Are there others who have the same problem?
Kind regards,
Marcel