Suggested improvement, allow "Below Navbar" to also have instance names work at the same time...
Add the following 4 lines as shown in context below
PHP Code:
else // add this 4 lines of code to else ... before break.
{
$show['vbshout_' . $instance['varname']] = $rendered;
}
Edit upload\dbtech\vbshout\includes\global.php as shown...
PHP Code:
switch ($instance['autodisplay'])
{
case 1:
if (THIS_SCRIPT == 'index')
{
// Below Navbar
if (intval($vbulletin->versionnumber) != 3)
{
// vB4 Location
$ad_location['global_below_navbar'] .= $rendered;
}
else
{
// vB3 code
$ad_location['ad_navbar_below'] .= $rendered;
}
}
else // add this 4 lines of code to else ... before break.
{
$show['vbshout_' . $instance['varname']] = $rendered;
}
break;
case 2:
if (THIS_SCRIPT == 'index')
{
// Above Footer
$template_hook['forumhome_below_forums'] .= $rendered;
}
break;