ok so say i want to replace $activeusers on forumhome
with a template i define as $myTemplate
would it be the same process? and would the code i have in $myTemplate be able to run in replace of $activeusers (which is the forumhome_loggedinusers template) i still want the same variables to work like $loggedin[musername]
its mainly the hooks i get lost on i dont know what hooks i need to use for things i try to do so mainly i just try different ones untill it works
right now im using with the hook (forumhome_loggedinuser)
Code:
$vbulletin->templatecache['forumhome_loggedinuser'] = fetch_template('drc_act_av');
and that works, but its not really what i want it to do.
i want it to replace $activeusers on forumhome and load my template.
im thinking
Code:
eval('$drc_act_av = "' . fetch_template('drc_act_av') . '";');
$activeusers = $drc_act_av;
but would that work on forumhome_start hook, cause that template has to show $loggedin[musername] variables