Okay
  Public Ticket #3078918
Changing text of message about manual account approval
Closed

Comments

  •  2
    Deralict started the conversation

    Where can we change the wording of the message "Attention! Your account requires manual approval. Our team will review it as soon as possible. Thank you for your understanding."

    This message is sent in the New Account email that is sent to the customer after they create a new acount.

  •  2,286
    WebWizards replied

    Hi there,

    You can change that text by adding the following PHP code snippet to your site. It can be added to functions.php or to any snippets plugin:

    add_filter('b2bking_new_account_email_approval_notification', function($text){
            $text = 'Your custom text here...';
            return $text;
    }, 10, 1);
    

    Kind regards,

    Stefan