Thanks!
I found that the insertion point into the navbar was nested in an If statement that concealed the hack I've been searching for. Got that altered and have been frustated that it still didn't work.
So, from your reply, I peered a little deeper into the hacks settings and found that it adds some info into the footer by hooking into global_setup_complete which is apparently not used anywhere within the arcade. (I"m speculating here)
I added the code from the plug-in into the /arcade/functions/functions.php and Voila, it's working... and so far, it doesn't appear I broke my much loved arcade!
In case it's of any use to anyone else: Here's what I did to get the VMoods mod working on the Arcade page...
I found this in /arcade/functions/functions.php:
PHP Code:
eval('$footer="' . fetch_template('footer') . '";');
And put all of this immediately afterwards:
PHP Code:
if ($vbulletin->options['vmoods_active'] && $vbulletin->userinfo['userid'] > 0 && !in_array($vbulletin->userinfo['usergroupid'], explode(",", $vbulletin->options['vmoods_usergroups'])))
{
$vmoods_list = explode("\n", $vbulletin->options['vmoods_list']);
$vmoods_path = $vbulletin->options['vmoods_images_path'];
foreach ($vmoods_list as $vmood)
{
$vmood = trim($vmood);
$vmood_id = ($vbulletin->userinfo['vmood'] == $vmood) ? 'mine' : $vmood;
if ($vbulletin->options['vmoods_li_option'] == 'text'){
eval('$vmoods_li .= "' . fetch_template('vmoods_li_text') . '";');
} else
if ($vbulletin->options['vmoods_li_option'] == 'images'){
eval('$vmoods_li .= "' . fetch_template('vmoods_li') . '";');
}
}
eval('$vmoods_form = "' . fetch_template('vmoods_form') . '";');
$footer = $vmoods_form . $footer;
}