wpexpertsio / new-user-approve

WordPress plugin that allows an admin to approve new users
http://wordpress.org/plugins/new-user-approve/
GNU General Public License v2.0
60 stars 45 forks source link

how could we edit the approval message? #86

Open saidhappy010 opened 3 years ago

saidhappy010 commented 3 years ago

Hi I am in the process of modifying the account approval message as per the client's need. I added this piece of code.

add_filter( 'new_user_approve_pending_message', 'edit_approval_message'); function edit_approval_message( $message ) { $message = __( '<strong>info</strong>: My custome message.'); return $message; } unfortunately it doesn't work, even the default message no longer appears please help me, I need it. thank you so much