Hello,
I tried searching but it seems this is too vague to find a good result. I'm trying to pull a viewer setting from a plugin that's changing how the viewer sees signatures. The field I'm checking is field32, and using the postbit_display_complete hook and it's not getting any data from the $vbulletin->userinfo['field32'] variable. Here's a sniplet of the code for the plugin...
PHP Code:
if ($vbulletin->userinfo['field32'] == "Scroll Box") {
$this->post['signature'] = "<div class=\"sigbox\">". $this->post['signature'] ."</div>";
}
So, how do I get the VIEWER's settings through a plugin?