@BooFo, thanks for the help man. Your always trying to help me... but I dont know where to put that, This is the code I see:
Code:
<plugins>
<plugin active="1" executionorder="5">
<title>Real Name In Profile and Postbit</title>
<hookname>postbit_display_complete</hookname>
<phpcode><![CDATA[global $vbulletin;
if (!empty($post["field{$this->registry->options['realname_profile_field']}"]))
{
$template_hook['postbit_userinfo_right_after_posts'] .= '<dt>' . $vbphrase['real_name'] . '</dt> <dd>' . $post["field{$this->registry->options['realname_profile_field']}"] . '</dd>';
}]]></phpcode>
</plugin>
</plugins>
I add
ABOVE the first PLUGIN tag?
Code:
global $vbulletin;<plugins>
<plugin active="1" executionorder="5">
<title>Real Name In Profile and Postbit</title>
<hookname>postbit_display_complete</hookname>
<phpcode><![CDATA[global $vbulletin;
if (!empty($post["field{$this->registry->options['realname_profile_field']}"]))
{
$template_hook['postbit_userinfo_right_after_posts'] .= '<dt>' . $vbphrase['real_name'] . '</dt> <dd>' . $post["field{$this->registry->options['realname_profile_field']}"] . '</dd>';
}]]></phpcode>
</plugin>
</plugins>