Thoughts of JS » Search Results for "buddypress noreply email"
Fix for BuddyPress e-mail notifications problem
I have a client who installed BudyPress and since then the mail() function stopped working. SMTP could not connect neither. I had to look into BudyPress’ code to find the problem. Here is a fast fix for this issue: Open up wp-content/plugins/buddypress/bp-core/bp-core-filters.php (back up everything you edit, you can never know..) Go to line 29, you should see this code: return apply_filters( 'bp_core_email_from_address_filter', __( 'noreply', 'buddypress' ) . '@' . $domain[2] ); A fast fix is this: return apply_filters( 'bp_core_email_from_address_filter', __( 'noreply', 'buddypress' ) . '@yoursite.com' ); Replace yoursite.com with your site’s URL. It should work now. Was this post useful? Buy me a beer! Note: I wanted to post this fix on their site but could not find a place where to create a new account. I suppose registration is disabled. Incoming search terms:buddypress email notifications … Read entire article »
Filed under: Web development