Hi,
I have a plugin for 3.8 that works to hide smilies in posts that belong to a certain folder, since some members don't like them.
Code:
if ($vbulletin->userinfo['field9'] == 'Yes')
{
$vbulletin->templatecache['headinclude'] .= '<style type=\"text/css\">img[src^=\"http://domain.com/forum/images/smilies/hiddensmiles\"] {display: none ! important;}</style>';
}
Can anyone help me figure out how to make this work in vb4? Thanks!