How To Do Style Specific Plugins
by
14 Nov 2005
Okay since we no longer have the php templates. I came up with the alternative for plugins that I have been using. I decided to share this little trick. Its nothing fancy but it gets the job done. First make your plugin. Then use the following code before the first line in your plugin PHP Code:
if($vbulletin->userinfo['styleid']=='27')
After the end of your plugin code put PHP Code:
}
PHP Code:
if($vbulletin->userinfo['styleid']=='27')
I hope this helps some of you out. |