SuperFly
06-13-2006, 10:00 PM
Create a new Custom Profile Field of the your choosing (yes/no / radio / select). "Top" and "Left" as the options. At the very bottom of the custom profile edit page, set the Display Page option to Options: Thread Viewing. Submit your new profile field.
Then you add a new plugin with the Hook Location 'style_fetch', replace xx with the field number and enter the following code:
if ($vbulletin->userinfo['fieldxx'] == 'Top')
{
$vbulletin->options['legacypostbit'] = 0;
}
Credit to Wayne Luke.
Then you add a new plugin with the Hook Location 'style_fetch', replace xx with the field number and enter the following code:
if ($vbulletin->userinfo['fieldxx'] == 'Top')
{
$vbulletin->options['legacypostbit'] = 0;
}
Credit to Wayne Luke.