Quote:
Originally Posted by Vowgaming
Hi firstly love the addon just hoping you can give me a clue about notifications on promotions.
When you receive a promotion I want the pm to link to a different page, at the moment it goes to insight, where can this be changed I have looked through the code and cant seem to find it.
thought it was in functions
Code:
function AddNotification($column, $userid)
{
global $vbulletin;
if ($vbulletin->options['xperience_notifications'])
{
$vbulletin->db->query_write("UPDATE " . TABLE_PREFIX . "user SET ".$column."=+1 WHERE userid=".$userid);
}
}
But I cant see the details of the notification here
|
It's not in the PHP files. You need to change the code of a plugin named "vBExperience (notifications)":
PHP Code:
$notifications['xperience_promotioncount'] = array(
'phrase' => $vbphrase['xperience_promotions_notifications'],
'link' => $vbulletin->options['bburl'].'/xperience.php?go=insight' . $vbulletin->session->vars['sessionurl'],
'order' => 152
);
Quote:
Originally Posted by vitrag24
i had issue of server overload due to spam bot mostly in previous version..when i disabled previous version, no such problem..so i think there was some problem with previous version..now ujpgrading to this version..i hope there wont be such problem now.
|
Please check if the banned usergroup id is set to be ignored in vBExperience Settings.