Multi Vendor Marketplace Plugin | WCFM Marketplace › Forums › WCFM – Membership › How to edit vendor "Welcome" email header
- This topic has 8 replies, 2 voices, and was last updated 5 years, 9 months ago by WCFM Forum.
- AuthorPosts
- June 4, 2018 at 9:44 pm #24297KristinGuest
Where 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 #24321WCFM ForumKeymaster
Hi,
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 #24375KristinGuest
It 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 #24434WCFM ForumKeymaster
Hi,
Can you please show me screenshot for the same?
Thank You
- June 8, 2018 at 2:51 pm #24510KristinGuest
This 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 #24528WCFM ForumKeymaster
Hi,
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 #24540KristinGuest
I’ll give that a try… thanks!
- June 13, 2018 at 8:47 am #24752arsalanGuest
hello..
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 #24753WCFM ForumKeymaster
Hi,
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.