Was this ever fixed? We are using WP Discuz & the Mentions add on. It looks like the Mentions are coming from my email address since I'm the main admin listed on the site, but we need them to come from a no-reply address. How do I fix this??
Notifications
Clear all
wpDiscuz User & Comment Mentioning
4
Posts
2
Users
1
Reactions
1,416
Views
Mar 14, 2019 8:48 pm
3 Replies
Mar 15, 2019 12:56 pm
Hi @michaelhyattco,
This issue is already fixed in the wpDiscuz plugin. The problem comes from the wpDiscuz User & Comment Mentioning add-on. We'll fix it in the upcoming version of the wpDiscuz User & Comment Mentioning add-on.
Mar 15, 2019 3:16 pm
As a temporary solution please add the following code in your current active theme's functions.php file
add_filter('wp_mail_from', function ($email){
return 'no-reply@blogname.com';
});
Don't forget to change the red marked code (set the right email) before using.