beetcore
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Real Estate] How to change slug urlThanks.
WIll try out 🙂Forum: Plugins
In reply to: [WP Real Estate] How to change slug urlYes he should still have that issue.
I’m also having the same issue. http://prntscr.com/lk74ji
Forum: Plugins
In reply to: [Registration Options for BuddyPress] Change Sender Email From WordPressIt created an error http://prntscr.com/jtob72
I guess cos i use PageLines Framework…So i googled it and came across this plugin CB Mail Sender, which solved the challenge.
Thanks a lot 🙂
Forum: Plugins
In reply to: [Registration Options for BuddyPress] Change Sender Email From WordPressHi, thanks for this…
Can i substitute what you have there with mine, e.g.—————
function beetcore_change_from_email( $original ) {
return ‘support@beetcore.com’;
}
add_filter( ‘wp_mail_from’, ‘beetcore_change_from_email’ );function beetcore_change_from_name( $original ) {
return ‘Support Beetcore’;
}
add_filter( ‘wp_mail_from_name’, ‘beetcore_change_from_name’ );——————
Will above work?
Forum: Plugins
In reply to: [Registration Options for BuddyPress] Change Sender Email From WordPressHi, thanks for the prompt response…
Pls how do i add these filters to change the “From name” and “From email”.
I’ll appreciate your step by step guidance.
Thanks