softwarelisted
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Paypal “Donate” Button DissapearanceI ran into the same problem. Using the plugin http://gh3.altervista.org/simple-paypal-donate-plugin/ solved the problem (I am still using the WYSIWYG editor).
You may want to change the alt title for the image in this plugin … it gives a non-english description.
Forum: Fixing WordPress
In reply to: New User Registration email – how to change from address?I am using bluehost for my wordpress blog and ran into the same issue at http://www.softwarelisted.com
Short to the point solution:
1. Create a “wordpress” email (ie. wordpress@yourdomain.com ) on bluehost. This will make the email come out from wordpress@YOURDOMAIN.com
or
2. Edit the wp_mail (defined in wp-includes\pluggable-functions.php) function to the user that you want the mail from . Change
“From: wordpress@” . preg_replace(‘#^www\.#’, …
to
“From: PWRS@” . preg_replace(‘#^www\.#’, …make sure that PWRS@yourdomain.com email exists.
I am no php expert, but this is what I think is happening.
The wp_mail function is called without setting the $headers variable when either sending the password to the new user or when sending the new user information to the administrator.
The wp_mail sets the header to come from wordpress@YOURDOMAIN.com email. If the wordpress@YOURDOMAIN.com does not exists, it somehow picks this information from the machine which generates the email from YOURNAME@box142.bluehost.com
Hope this helps.