I cant change send from email wordpress
-
Hello,I cant change send from email wordpress , I have changed emailI have tried plugins,I have edited the wp_users and wp_options in phpmyadmin and nothing works even added that code on fuctions.php
/**
* Initialize all the things.
*/
require get_template_directory() . ‘/inc/init.php’;/**
* Note: Do not add any custom code here. Please use a child theme so that your customizations aren’t lost during updates.
* http://codex.wordpress.org/Child_Themes
*/add_filter( ‘wp_mail_from’, ‘wpse_new_mail_from’ );
function wpse_new_mail_from( $old ) {
return ‘(email visible only to moderators and staff)’; // Edit it with your email address
}add_filter(‘wp_mail_from_name’, ‘wpse_new_mail_from_name’);
function wpse_new_mail_from_name( $old ) {
return ‘EasyLolBoost’; // Edit it with your/company name
}it still shows my personal email and I want it to show my domains email adress,how can I do that?
The blog I need help with is: (visible only to logged in users)
-
You are in the wrong forum as your site uses the open source wordpress.org. Their support is at https://wordpress.org/support/forums/
- The topic ‘I cant change send from email wordpress’ is closed to new replies.