Is it possible to hide this hack completely from the guest visitors?
I used template conditionals to hide thanks for them but the product's still using 1 query...
I tried to wrap postbit_display_start plugin with the code below:
Quote:
if ($vbulletin->userinfo['usergroupid'] == 1)
{
}
else
{
<---postbit_display_start plugin content--->
}
|
This method worked for some other hacks.