I am having issues with http://www.cwstaging.com. The template is JA Opal.
Here is the issue I’m having. I moved JA-Tabs into the User 5 position. It works fine on the homepage but when I turn on the menu-assignment for JA-Tabs to “ALL”, it still doesn’t show up on any pages except for the homepage. For example, if you go to ” http://cwstaging.com/index.php?optio…d=92&Itemid=83 ” I have the JA-Tabs module assigned to that page, but it doesn’t show up.
I found one thread in the forums that suggested changing the following code in the route.php file:
if($item = ContentHelperRoute::_findItem($needles)) {
$link .= ‘&Itemid=’.$item->id;
};
to:
if($item = ContentHelperRoute::_findItem($needles)) {
$link .= ‘&Itemid=’.$item->id;
} else {
$link .= ‘&Itemid=1’;
but that didn’t seem to work.
Any ideas?