Title: Custom Message
Last modified: August 30, 2016

---

# Custom Message

 *  Resolved [christopherbeck](https://wordpress.org/support/users/christopherbeck/)
 * (@christopherbeck)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/custom-message-1/)
 * Hello,
 * I’d like to change the message displayed below to a custom message:
 * _“After you register, your request will be sent to the site administrator for
   approval. You will then receive an email with further instructions.”_
 * Can anyone tell if it would be possible to override this function (nua_default_notification_message)
   in my function.php?
 * Thanks,
 * Chris.
 * [https://wordpress.org/plugins/new-user-approve/](https://wordpress.org/plugins/new-user-approve/)

Viewing 1 replies (of 1 total)

 *  [Josh Harrison](https://wordpress.org/support/users/picklewagon/)
 * (@picklewagon)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/custom-message-1/#post-6208957)
 * To override that message, you would use the `new_user_approve_registration_message_default`
   filter.
 * Something like this should work:
 *     ```
       /**
        * Modify the default notification message the user will see
        * after registering for an account.
        *
        * @param $message The default message.
        * @return string the updated message.
        */
       function my_custom_registration_message( $message ) {
           // here you can modify part of the message or
           // completely override it.
           $message = 'New message goes here.';
   
           return $message;
       }
   
       // modify the default registration message
       add_filter( 'nua_user_approve_registration_message_default', 'my_custom_registration_message' );
       ```
   

Viewing 1 replies (of 1 total)

The topic ‘Custom Message’ is closed to new replies.

 * ![](https://ps.w.org/new-user-approve/assets/icon-128x128.gif?rev=2544141)
 * [New User Approve](https://wordpress.org/plugins/new-user-approve/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/new-user-approve/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/new-user-approve/)
 * [Active Topics](https://wordpress.org/support/plugin/new-user-approve/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/new-user-approve/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/new-user-approve/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Josh Harrison](https://wordpress.org/support/users/picklewagon/)
 * Last activity: [10 years, 11 months ago](https://wordpress.org/support/topic/custom-message-1/#post-6208957)
 * Status: resolved