Actually I got it working exactly how I wanted it, check the attachment...
It was very simple as long as you're using the Separate Sticky/Normal threads hack. Just had to re-code your merge plugin and the Forum Display template.
If you want have the other hack installed and you want to make yours look like mine do the following:
Open ForumDisplay template
Find:
Replace with:
Code:
$stickyglobalthreadbits
$threadbits_sticky
<else />
$nostickyglobalthreadbits
In the Plugin (Merge Global Threadbits with Threadbits)
Replace the entire plugin with:
Code:
if ($vbulletin->options['gton'])
{
eval('$bolx3 = "' . fetch_template('FORUMDISPLAY_Separate_global') . '";');
eval('$bolx4 = "' . fetch_template('FORUMDISPLAY_Separate') . '";');
$nostickyglobalthreadbits = "$bolx3".$globalthreadbits."$bolx4";
$stickyglobalthreadbits = "$bolx3".$globalthreadbits;
}
Add a phrase called: delim_global
With the following:
Lastly, add a template called FORUMDISPLAY_Separate_global
With the following:
Code:
<tr><td class="thead" colspan="<if condition="$show['threadicons']">7<else />6</if>"><strong>$vbphrase[delim_global]</strong></td></tr>
This doesn't add the little globe image I have, if you want that, PM me.