Quote:
Originally Posted by tbworld
Add to MEMBERINFO template[/B]
Add the new hook... The rest of the code is for reference
HTML Code:
{vb:raw template_hook.profile_tabs_first}
<vb:if condition="$blocks[activitystream]">...
<vb:if condition="$blocks[visitor_messaging]">...
<!-- Add your own hook -->
{vb:raw template_hook.profile_tabs_myhook} <!-- Add This Line Only! -->
<!-- Add your own hook -->
<vb:if condition="$blocks[infractions]">...
<vb:if condition="$blocks[reputation]">...
{vb:raw template_hook.profile_tabs_last}
Use the same procedure to create multiple hooks if you need them.
|
Do i add this
PHP Code:
// Your existing code ...
$template_hook['profile_tabs_myhook'] .= $templater->render();
// Your existing code ...
[B]
To the same plugin as this
Code:
if (!$vbulletin->GPC_exists['tab'])
{
$vbulletin->GPC['tab'] = 'visitor_messaging';
}