Quote:
Originally Posted by AndrewD
Well, I finally sorted this out.
I installed the basic tab menu hack and modified the navbar template by putting
Code:
<br />
$tabbars
<br />
at the end.
I then modified the standard tabbars template so that there was a menu item defined for LDM:
Code:
<li><a href="/forums/local_links.php" class="<if condition="in_array(THIS_SCRIPT, array('local_links', 'local_links_admin', 'local_links_search'))">tabbarssix<else />tabbarsone</if>" onMouseover="expandcontent('sc6', this)">Downloads</a></li>
This sequence will use the tabbarsone style if you are outside LDM and the tabbarssix style if you are inside LDM.
I'm sure you can take it from here. Bear in mind that you will need to change the strings inside the in_array() statement if you have renames the main LDM scripts.
|
This was not quite what I meant, because I got this far. I have 3 tabs linking to 3 different categories in LDM; Video, Audio and Documents. All sections make use of local_links, so I can not use THIS_SCRIPT to identify the categories.
This is why I want to use category-id's. I have done this for the tabs linking to forums. This worked like this:
Code:
<if condition="in_array($foruminfo['forumid'], array(176, 190, 174))">
I have tried to translate the method to LDM, like below, but was unsuccessful:
Code:
<if condition="in_array($foruminfo[catid], array(126,39, 43))">
If you can correct this line for me, then I am set.