Quote:
Originally Posted by EWGF
Fix for this:
Find:
Code:
if($vbulletin->options['vmen_active'] == 1 )
Change to:
Code:
if($vbulletin->options['vmen_active'] == 1 AND !$_REQUEST['vmid'])
|
I've got a field to make user's choose if they want to recieve or not emails when someone posted on their profile, like this:
Code:
if($vbulletin->options['VMEN_active'] == 1 AND $userinfo['field10'] == 'Yes')
My question is:
- How do I merge your solution :
Code:
if($vbulletin->options['vmen_active'] == 1 AND !$_REQUEST['vmid'])
with my modification:
Code:
if($vbulletin->options['VMEN_active'] == 1 AND $userinfo['field10'] == 'Yes')
Also it will be very good if you know how to extract the message posted on the profile, the issue I have above (
https://vborg.vbsupport.ru/showpost....5&postcount=67). Users recieves the e-mail but without the message from their profile!
Much apreciated for your answer!