Quote:
Originally Posted by Tulsa
Since this is listed as an unsupported mod, I guess it's okay to post this...
Myself and at least one other person would prefer this mod to open a vb page instead of a popup window. Problem was, the navbar wasn't recognized. Here's the fix.
In the radiostations.php file find:
Code:
// ############################ CONFIG VARS ##############################
$admin_groups = rs_do_array($vbulletin->options['radiostations_admins']);
$full_users = rs_do_array($vbulletin->options['radiostations_full_users']);
$banned_users = rs_do_array($vbulletin->options['radiostations_banned_users']);
$half_users = rs_do_array($vbulletin->options['radiostations_half_users']);
$default_station = $vbulletin->options['radiostations_default_station'];
Just below it add:
Code:
$navbits = array();
$navbits[$parent] = 'RADIOSTATIONS';
$navbits = construct_navbits($navbits);
eval('$navbar = "' . fetch_template('navbar') . '";');
$navbar = process_replacement_vars($navbar);
eval('$headinclude = "' . fetch_template('headinclude') . '";');
$headinclude = process_replacement_vars($headinclude);
eval('$footer = "' . fetch_template('footer') . '";');
$footer = process_replacement_vars($footer);
In the RADIOSTATIONS template find:
Add below it:
At the bottom of this same template, right above the:
add:
If you want to use this in a drop down menu from your navbar, add this:
Code:
<if condition="$show['member']"><tr><td class="vbmenu_option"><a href="radiostations.php?$session[sessionurl_q]" target="_blank">$vbphrase[rs_radiostations]</a></td></tr></if>
If you prefer to have it as it's own menu item in your navbar, add this:
Code:
<if condition="$show['member']"><td class="vbmenu_control"><a href="radiostations.php?$session[sessionurl_q]" target="_blank">$vbphrase[rs_radiostations]</a></td></if>
Both will open a new window/tab depending on how the users browser is set.
This works for me, if it doesn't for you, undo it and call me a moron. 
|
Tulsa...
I'm running 3.6.8 PL2. Here's the problem...
I used the above to create header and footer for the Radio and TV mod. The code you provided works, but with a glitch.
If you have a navbar with drop-down menus...like Search and Quick Links...these drop-down menus will not function with the code you provided. Have you tested this with the latest stable version of vbulletin?
Would like to get this to work properly so I could incorporate it into the radioandtv.php file. By the way, I'm using the latest version (1.7) of this mod.
Hope to hear back from you soon...