You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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
The text was updated successfully, but these errors were encountered: