On another note...
For those using this mod alongside vbAdvanced...and experiencing issues with the form output not working correctly. See this post for the fix:
https://vborg.vbsupport.ru/showpost....&postcount=197
Also...there may be those who are using Logician's
WebTemplates 3.7.x: VB Integrated CMS (Content Management System). If you are...and the form for the dropdown is not appearing or performing correctly on those pages...here's the fix:
Open view.php and find the following code:
Code:
//construct_forum_jump();
Right after that code, you're going to have to add the code from the
global_setup_complete hook of this mod. This code can be found in
VBOptions/Plugins & Products/Plugin Manager for vBulletin 3.8.3. Just click to edit that plugin...copy the code and paste that code after
//construct_forum_jump(); in the view.php file.
Code:
if ($vbulletin->options['vmoods_active']){
if ($vbulletin->userinfo['userid'] > 0 && in_array($vbulletin->userinfo['usergroupid'], explode(",", $vbulletin->options['vmoods_usergroups'])) == false){
$vmoods = explode("\n", $vbulletin->options['vmoods_list']);
$vmoods = array_merge(array('none'), $vmoods);
$vmood_i = 0;
foreach ($vmoods as $vmood){
$vmood = trim($vmood);
$vmood_id = ($vbulletin->userinfo['vmood'] == $vmood) ? 'mine' : $vmood;
$vmood_class = ($vmood_i < (int) $vbulletin->options['vmoods_preload']) ? ' vmood_loaded' : '';
eval('$vmoods_li .= "' . fetch_template($vbulletin->options['vmoods_li_option']) . '";');
$vmood_i++;
}
eval('$vmoods_form = "' . fetch_template('vmoods_form') . '";');
$footer = $vmoods_form . $footer;
}
eval('$vmoods_css_include = "' . fetch_template('vmoods_css_include') . '";');
$headinclude .= $vmoods_css_include;
}
I certainly hope you guys/gals find this useful...