Sure, if it's an easy fix and won't take too much of your time. But if the next release is soon, please don't bother. Thanks.
Sure, if it's an easy fix and won't take too much of your time. But if the next release is soon, please don't bother. Thanks.
It is enough to create one additional plugin - you can do it by Admin CP:
- Go to Admin CP > Plugins & Products > Plugin Manager
- Click Add New Plugin
- Set values:
- Product: vB Enterprise Translator
- Hook location: private_newpm_blank
- Title: Don't translate usernames (in new PM)
- Execution Order: 5
- Plugin PHP Code:
PHP Code:
if ($_REQUEST['language'] && $vbulletin->options['vbenterprisetranslator_donttranslateusernames']) {
$pm['recipients'] = '<!--vBET_SNTA-->' . $pm['recipients'] .'<!--vBET_ENTA-->';
$pm['bccrecipients'] = '<!--vBET_SNTA-->' . $pm['bccrecipients'] .'<!--vBET_ENTA-->';
}
- Plugin is Active: Yes
- Click Save
And that's it![]()