I just set up my initial site with Subscribely and so far so good. I just have 2 questions, users that register are getting a confirmation email from "wordpress" instead of my domain name. Can this be changed to look more professional? Also, how do I change the very bottom where is says inkthemes 2014 to my domain name? Thanks for the help
Hello, We are using here for registration,forget password or we can say for all mail process WordPress function. Which result it use bydeafault WP or wordpress in mail. We will work to improve this. For your second issue please follow below image. Thanks & Regards Pramod
Hi Speedsurfer, to overcome this, you can place the following into your functions.php file. Just remember to change it to your email address/website name. To quote the inkthemes team... "It will resolve your issue" Cheers Kenty /** changing default wordpres email settings */ add_filter('wp_mail_from', 'new_mail_from'); add_filter('wp_mail_from_name', 'new_mail_from_name'); function new_mail_from($old) { return 'your email address'; } function new_mail_from_name($old) { return 'your name or your website'; }
Hello ! You can customize emails through plugins. Visit below links or you can find aother plugin in WordPress. https://wordpress.org/plugins/new-user-email-set-up/ Follow instructions provided by plugin. Thanks & Regards Pramod