lol how did you do it? o.O
Edit:
oh in the php files of MySB, yeah that would work fine
Or just do the same as snake did
Edit:
search for:
Code:
case 'index_top':
if(!$templates->cache['index'])
$templates->cache('index');
$templates->cache['index'] = str_replace('{$tabmenu}',$mysb_shoutbox.'{$tabmenu}',$templates->cache['index']);
break;
Replace with:
Code:
case 'index_top':
if(!$templates->cache['index'])
$templates->cache('index');
$templates->cache['index'] = str_replace('{$tabmenu}',$mysb_shoutbox.'{$tabmenu}',$templates->cache['index']);
break;
The above will work for the setting 'index_top'
Great work... I will update when I got time

works perfectly with tabs plugin for me on TFS.
(upgraded some time ago.)
- Shadows.
lol Shadows your shoutbox is not on top of your forums. the affect is only when the sb is on the top

oh ok xD yeah it's not at the top lol

.
- Shadows.
(05-17-2009 08:30 PM)Pirata Nervo Wrote: [ -> ]Or just do the same as snake did
Edit:
search for:
Code:
case 'index_top':
if(!$templates->cache['index'])
$templates->cache('index');
$templates->cache['index'] = [color=#FF0000]str_replace('{$tabmenu}',$mysb_shoutbox.'{$tabmenu}',$templates->cache['index']);[/color]
break;
Replace with:
Code:
case 'index_top':
if(!$templates->cache['index'])
$templates->cache('index');
$templates->cache['index'] = str_replace('{$tabmenu}',$mysb_shoutbox.'{$tabmenu}',$templates->cache['index']);
break;
The above will work for the setting 'index_top'
the red one (to search for and replace) must be:
Code:
str_replace('{$forums}',$mysb_shoutbox.'{$forums}',$templates->cache['index']);

you should also find: (line 1868)
Code:
case 'index_top':
if(!$templates->cache['index'])
$templates->cache('index');
$templates->cache['index'] = str_replace('{$forums}',$error_msg.'{$forums}',$templates->cache['index']);
break;
and replace with:
Code:
case 'index_top':
if(!$templates->cache['index'])
$templates->cache('index');
$templates->cache['index'] = str_replace('{$tabmenu}',$error_msg.'{$tabmenu}',$templates->cache['index']);
break;
for the banned user error message

search and replace $tabmenu with $tabmenu will not work, lol
oops sorry, oh and the color tag doesn't work inside code tags lol