I try to search this problem, and I found this link got problem like me. But his’s prob dont have resolve.
I want to change notification name "WordPress", can I change it?
![enter image description here](http://upic.me/i/yf/wordpress.jpg "enter image title here")
1 Answers
Hi,
I have checked on our demo and nothing happens, you can send me username & password of your site (via private answer) for further checking.
Regards,
thank for reply, I just resolve my problem. add this code in function.php
add_filter(‘wp_mail_from_name’, ‘new_mail_from_name’);
function new_mail_from_name($old) {
return ‘name’;
}
Awesome! I appreciate it. 🙂
Please login or Register to submit your answer