Title: Remove custom message
Last modified: August 30, 2016

---

# Remove custom message

 *  Resolved [dhilm001](https://wordpress.org/support/users/dhilm001/)
 * (@dhilm001)
 * [10 years, 12 months ago](https://wordpress.org/support/topic/remove-custom-message/)
 * Hi,
 * I can see you recently answered a question about how to change the custom message,
   as follows:
 * “After you register, your request will be sent to the site administrator for 
   approval. You will then receive an email with further instructions.”
 * I would like to remove this message from the login screen completely. Would you
   mind letting me know the code and where to place it to achieve this?
 * Many thanks for the great plugin!
 * [https://wordpress.org/plugins/new-user-approve/](https://wordpress.org/plugins/new-user-approve/)

Viewing 2 replies - 1 through 2 (of 2 total)

 *  [Josh Harrison](https://wordpress.org/support/users/picklewagon/)
 * (@picklewagon)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/remove-custom-message/#post-6245831)
 * You’d want to add this to your functions.php file in your theme or create a new
   plugin to accomplish this.
 *     ```
       /**
        * 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 = '';
   
           return $message;
       }
   
       // modify the default registration message
       add_filter( 'nua_user_approve_registration_message_default', 'my_custom_registration_message' );
       ```
   
 * Good luck. Let me know how it goes.
 *  Thread Starter [dhilm001](https://wordpress.org/support/users/dhilm001/)
 * (@dhilm001)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/remove-custom-message/#post-6245895)
 * This worked great – thankyou!!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Remove 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/)

 * 2 replies
 * 2 participants
 * Last reply from: [dhilm001](https://wordpress.org/support/users/dhilm001/)
 * Last activity: [10 years, 10 months ago](https://wordpress.org/support/topic/remove-custom-message/#post-6245895)
 * Status: resolved