Hey, can you explain to me exactly where? Cuase I am not 100% where to add the "global $vbulletin;" This is the code:
Code:
<title>Real Name In Profile and Postbit</title>
<hookname>postbit_display_complete</hookname>
<phpcode><![CDATA[if (!empty($post["field{$vbulletin->options['realname_profile_field']}"]))
{
$template_hook['postbit_userinfo_right_after_posts'] .= '<dt>' . $vbphrase['real_name'] . '</dt> <dd>' . $post["field{$vbulletin->options['realname_profile_field']}"] . '</dd>';
}]]></phpcode>
Do I add it in FRONT of
Code:
<![CDATA[if (!empty($post["field{$vbulletin->options['realname_profile_field']}"]))
or AFTER?