Best Multi Vendor Marketplace Plugin for WordPress › Forums › WCFM – Membership › How to edit vendor "Welcome" email header
- This topic has 8 replies, 2 voices, and was last updated 7 years, 1 month ago by
WCFM Forum.
- AuthorPosts
- June 4, 2018 at 9:44 pm #24297
Kristin
GuestWhere can I edit the header text on the vendor “welcome” email? (The part in the solid colored box that currently says “Welcome to the store!”)
- June 5, 2018 at 5:21 am #24321
WCFM Forum
MemberHi,
Welcome email subject and content can be modified from WCFM Dashboard -> Membership -> Settings -> Welcome Email
Are you looking for something else, then please know me!
Thank You
- June 5, 2018 at 3:53 pm #24375
Kristin
GuestIt is the email header I am trying to modify, not the email subject or content. It’s the part that currently says “Welcome to the store!”.
- June 7, 2018 at 8:29 pm #24434
WCFM Forum
MemberHi,
Can you please show me screenshot for the same?
Thank You
- June 8, 2018 at 2:51 pm #24510
Kristin
GuestThis is the welcome email sent when a member subscribes to a new subscription – I have edited the content & subject line via the WCFM dashbaord Memberships Account Settings, but cannot figure out where to change the text on the header (the part with the orange background that says “Welcome to the store!”).
Example: https://www.dropbox.com/s/12e9wyilzr77qap/Screen%20Shot%202018-06-08%20at%208.48.30%20AM.png?dl=0
- June 8, 2018 at 6:57 pm #24528
WCFM Forum
MemberHi,
Thanks for the screenshot.
Add this to your site to change this.
function wcfm_custom_translate_text( $translated ) { $translated = str_ireplace( 'Welcome to the store!', 'YOUR TEXT', $translated ); return $translated; } add_filter('gettext', 'wcfm_custom_translate_text'); add_filter('ngettext', 'wcfm_custom_translate_text');
Set “YOUR TEXT” to change this.
You may use Translation to change this as well.
Thank You
- June 8, 2018 at 8:20 pm #24540
Kristin
GuestI’ll give that a try… thanks!
- June 13, 2018 at 8:47 am #24752
arsalan
Guesthello..
function wcfm_custom_translate_text( $translated ) {
$translated = str_ireplace( ‘Welcome to the store!’, ‘YOUR TEXT’, $translated );
return $translated;
}
add_filter(‘gettext’, ‘wcfm_custom_translate_text’);
add_filter(‘ngettext’, ‘wcfm_custom_translate_text’);
where i can add this code ?? in which file ?? - June 13, 2018 at 9:59 am #24753
WCFM Forum
MemberHi,
Add this in your child theme’s functions.php
Or you may use plugin like this to add custom codes – https://wordpress.org/plugins/code-snippets/
Thank You
- AuthorPosts
- The topic ‘How to edit vendor "Welcome" email header’ is closed to new replies.