I'm already using profile_tabs as master template hook for the content. The template hook profile_tabs_first is for the position of the tab. See me code below:
Code:
require_once(DIR . '/includes/class_postbit.php');
require_once(DIR . '/includes/functions_user.php');
require_once(DIR . '/dating/includes/functions.php');
if (isset($vbulletin->GPC['tab']))
{
$selected_tab = $vbulletin->GPC['tab'];
}
$blockinfo['title'] = $vbphrase["erotic_profile"];
$blockid = "dating";
$taburl = $memberurl = fetch_seo_url('member', $prepared) . "&tab=dating#dating";
// Drawing the Tab
$templater = vB_Template::create('memberinfo_tab');
$templater->register('selected_tab', $selected_tab);
$templater->register('relpath', $relpath);
$templater->register('blockinfo', $blockinfo);
$templater->register('blockid', $blockid);
$templater->register('taburl', $taburl);
$template_hook['profile_tabs_first'] .= $templater->render();
// Page Template
$templater = vB_Template::create('microdating_profile_tab');
.....
$template_hook['profile_tabs'] .= $templater->render();
--------------- Added [DATE]1413716087[/DATE] at [TIME]1413716087[/TIME] ---------------
Looking in my code again, I got a feeling that I've did something just the opposite. The code must be on the hook profile_tab_first and the tab in the profile_tabs.