Hi nexialys
Sorry for seeming like such a noob on this one but I am stuggling to get this to work! I either get it to work on all styles or none at all. below is the code I have in each of the plugins. Am I dong something stupid here? I thought i was slowly getting my head round php coding but I may have to rethink that!
forumhome_complete
Code:
$arrayofstyles = array(1, 2, 3, 4);
if(in_array($stylevar['styleid'], $arrayofstyles))
{
$needle[] = addslashes('<td class="thead"> </td>');
$needle[] = addslashes('<td class="thead" width="100%" align="$stylevar[left]">$vbphrase[forum]</td>');
$needle[] = addslashes('<td class="thead">$vbphrase[last_post]</td>');
$needle[] = addslashes('<td class="thead">$vbphrase[threads]</td>');
$needle[] = addslashes('<td class="thead">$vbphrase[posts]</td>');
$heystack[] = '';
$heystack[] = addslashes('<td class="thead" colspan="2" align="$stylevar[left]">$vbphrase[forum]</td>');
$heystack[] = addslashes('<td class="thead" width="' . $vbulletin->options['nex_seperate_forumbits_lastpostby'] . '">$vbphrase[last_post]</td>');
$heystack[] = addslashes('<td class="thead" width="50">$vbphrase[threads]</td>');
$heystack[] = addslashes('<td class="thead" width="50">$vbphrase[posts]</td>');
$vbulletin->templatecache['FORUMHOME'] = str_replace($needle, $heystack, $vbulletin->templatecache['FORUMHOME']);
}
forumdisplay_complete
Code:
$arrayofstyles = array(1, 2, 3, 4);
if(in_array($stylevar['styleid'], $arrayofstyles))
{
$needle[] = addslashes('<td class="thead"> </td>');
$needle[] = addslashes('<td class="thead" width="100%" align="$stylevar[left]">$vbphrase[forum]</td>');
$needle[] = addslashes('<td class="thead">$vbphrase[last_post]</td>');
$needle[] = addslashes('<td class="thead">$vbphrase[threads]</td>');
$needle[] = addslashes('<td class="thead">$vbphrase[posts]</td>');
$heystack[] = '';
$heystack[] = addslashes('<td class="thead" colspan="2" align="$stylevar[left]">$vbphrase[forum]</td>');
$heystack[] = addslashes('<td class="thead" width="' . $vbulletin->options['nex_seperate_forumbits_lastpostby'] . '">$vbphrase[last_post]</td>');
$heystack[] = addslashes('<td class="thead" width="50">$vbphrase[threads]</td>');
$heystack[] = addslashes('<td class="thead" width="50">$vbphrase[posts]</td>');
$vbulletin->templatecache['FORUMDISPLAY'] = str_replace($needle, $heystack, $vbulletin->templatecache['FORUMDISPLAY']);
}
forumbit_display
Code:
$arrayofstyles = array(1, 2, 3, 4);
if(in_array($stylevar['styleid'], $arrayofstyles))
{
if (!isset($sepcounter)) $sepcounter = 0;
if (($tempext == '_nopost') AND ($sepcounter >= 1))
{
eval('$forumbits .= "' . fetch_template("forumhome_forumbit_seperate") . '";');
}
$sepcounter++;
}
Again sorry to be a pain in the arse

Regards
Mark