For my home tab I made a plugin like this:
Code:
if (THIS_SCRIPT == 'adv_index' AND $_GET['pageid'] == 'home')
{
$root= 'tab_mda1_175';
}
But the Home tab will not highlight. What am i doing wrong?
I made a second plug-in for my HUB page like this: (doesn't work either)
Code:
if (THIS_SCRIPT == 'adv_index' AND $_GET['pageid'] == 'hub')
{
$root= 'tab_mda1_358';
}
Neither TAB is set to append.
--------------- Added [DATE]1450126013[/DATE] at [TIME]1450126013[/TIME] ---------------
OKAY! I have my plugin code set this way now:
Code:
if (THIS_SCRIPT == 'adv_index' AND $_GET['pageid'] == 'home')
{
$root= 'tab_mda1_175';
}
if (THIS_SCRIPT == 'adv_index' AND $_GET['pageid'] == 'hub')
{
$root= 'tab_mda1_358';
}
I still do not get any of the tab to highlight. Do they both need to be set to append ID?
--------------- Added [DATE]1450126136[/DATE] at [TIME]1450126136[/TIME] ---------------
WOW this sucks! I've tried everything here and can't get this to work!