Quote:
Originally Posted by ascroft
Thanks - installed this - with 2 links under the tab - however they (the links) don't appear to display when I hover over the tab - if I click on the tab it launches the URL I have on the tab.
|
Quote:
Originally Posted by Russ_T
Does this work for anyone? Doesn't highlight for me at all.
I have so far not found a single tab mod that works  Anyone any ideas please?
|
Quote:
Originally Posted by mgurain
These did not work ! :
- links
- submenues
- highlight of active tab
I have added links & submenues but they didn't show up.
|
Links and SubMenu Links
only appear under a tab when it is highlighted.
A tab will only be highlighted if:
- the file is locally installed on the forum (not an external web site)
- the THIS_SCRIPT line in the local file matches the file's name (define('THIS_SCRIPT', 'XXXX'))
- the tab is not pointing another tab that has the same THIS_SCRIPT line in the file
- the links associated with the tab are sections related to the local file.
I will give an example below (it is bare-bones, and will not work as it is, but is an example to explain the above):
Lets say we have a file you have uploaded to the root of your forum.... say
test.php, the contents are as below:
PHP Code:
<?php
// this should be the same name as the file
define('THIS_SCRIPT', 'test');
// set to main page, if there are no arguments
if (empty($_REQUEST['do']))
{
$_REQUEST['do'] = 'main';
}
// this is the main section
if ($_REQUEST['do'] == 'main')
{
// DO MAIN STUFF
}
// this is another section
if ($_REQUEST['do'] == 'stuff')
{
// DO SOME STUFF
}
// this is yet another section
if ($_REQUEST['do'] == 'otherstuff')
{
// DO SOME OTHER STUFF
}
?>
We can create the tab and point the
Tab URL to
test.php or
test.php?do=main.
The two links that will allow the tab to stay highlighted when either are clicked would have to have the
Link URL field of each link set to
test.php?do=stuff and
test.php?do=otherstuff
Tab highlighting will
not work if:
- the Tab URL points to an external site
- the THIS_SCRIPT line in the file matches another file that already has another tab that points to it
- the Link URL fields do not point to sections of the same file that is pointed to by the tab they are associated with
I hope this explain things a bit, and as to why some people are having problems with getting tabs to highlight. It is not this hack that is the problem, it is how it is being utilised that is the problem.