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