How to edit vendor "Welcome" email header

We're shifting our Forum based support to a more dedicated support system!

We'll be closing our Forum support from 10th June, 2020 and move to Email Support assistance.

  • If you are a WCFM premium add-ons user, contact us- here
  • Want to know more before buying our add-ons? Send Pre sale queries- here
  • If you are a WCFM free user, please open a support ticket at WordPress.org
  • For WCFM App related queries, reach us- here
From now the forum will be read-only!

Multi Vendor Marketplace Plugin | WCFM Marketplace Forums WCFM – Membership How to edit vendor "Welcome" email header

Viewing 8 reply threads
  • Author
    Posts
    • #24297
      Kristin
      Guest

      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!”)

    • #24321
      WCFM Forum
      Keymaster

      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

    • #24375
      Kristin
      Guest

      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!”.

    • #24434
      WCFM Forum
      Keymaster

      Hi,

      Can you please show me screenshot for the same?

      Thank You

    • #24510
      Kristin
      Guest

      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

    • #24528
      WCFM Forum
      Keymaster

      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

    • #24540
      Kristin
      Guest

      I’ll give that a try… thanks!

    • #24752
      arsalan
      Guest

      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 ??

    • #24753
      WCFM Forum
      Keymaster

      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

Viewing 8 reply threads
  • The topic ‘How to edit vendor "Welcome" email header’ is closed to new replies.