Samantha Brooks

Forum Replies Created

Viewing 10 posts - 1 through 10 (of 10 total)
in reply to: Customisation request #175248

Samantha Brooks
Participant

Thank you, I will wait for further updates from your team.

in reply to: Customisation request #175122

Samantha Brooks
Participant

Ok thank you.

in reply to: user approve notification errot #174956

Samantha Brooks
Participant

New User Approve is not compatible with WPDM for the reasons listed below. Do you have a similar user approved add-on that is compatible with WPDM. The functionality we need is for an email to be sent to the client when a new user registers that they can then approve or deny.

WPDM Registration Functionality: when a user registers through the WPDM register form, it redirects a user to his profile, and if a user fails to register WPDM shows an error.

NUA Registration Functionality: if a user registers through any registration form, New User Approve shows a pending message to a user on the same registration form and does not redirect the user to his new profile.

Conflict B/w WPDM & NUA: Main problem is that when a user completes the registration form successfully, at this point NUA returns a pending message to a user on the same registration before WPDM redirection, WPDM gets that message and shows it as an Error with red color.

Solution: We can change the error but statically from WPDM. But when you delete or update the WPDM plugin then this functionality will erase.

in reply to: user approve notification errot #174762

Samantha Brooks
Participant

The word error is not managed, and does not appear.
The new user approve plugin author has added some codes that override some functions of WPDM to make sure those message could display, so from my point of view, we might still need to ask the new user approve to see if they could get rid of the word of ‘Error’ from that alert message. Are you able to remove the word ERROR for us?

We completed the following:
added the code snippet after nua_show_user_pending_message function in function.php , after then you can change registration message, from new-user-approve -> settings -> Registration Settings tab -> Registration complete message textarea message and save.

Here

Code Snippet:

add_filter( ‘new_user_approve_pending_message’, ‘registration_complete_message’,20 ) ;

function registration_complete_message ($message) {
$option_key = ‘new_user_approve_options’;
$options = get_option( $option_key );
$tag= get_bloginfo( ‘name’ );

$message = ( isset( $options[‘nua_registration_complete_message’] ) ) ? $options[‘nua_registration_complete_message’] : $message;
$message = str_replace(‘{sitename}’, $tag, $message);

return $message;

in reply to: user approve notification errot #174715

Samantha Brooks
Participant

Yes that has been done.
Here is a recording https://www.loom.com/share/3c96c297c1fc4c128401ee42b63aa8fe
The first time no message comes up at all. Watch when I continue and open and log in with previous credentials and you’ll see an ERROR message come up. This is what is happening with new users but the error message reads:

ERROR: An email has been sent to the site administrator. The administrator will review the information that has been submitted and will either approve or deny your request. You will receive an email with instructions on what you will need to do next. Thanks for your patience.

That is the message we want to change.

in reply to: user approve notification errot #174701

Samantha Brooks
Participant

Hello, the red ERROR message is on your side, as confirmed by WPDM and our developer. How can I send you a screenshot?

in reply to: user approve notification errot #174588

Samantha Brooks
Participant

Our developer has further said we want to keep that user approve plugin, we just want to update that red alert message, if you could provide a code sample like hook or filter for this, we could update it via hard codes here.

in reply to: user approve notification errot #174585

Samantha Brooks
Participant

Sorry, I’m not sure if we need to disable New User Approve or the default WP registration system.
We got New User Approve as we needed functionality – we need to send notifications to users that the registration is pending and then when it is approved, and we need the approval notification to be emailed to the client – they need to see everyone who registers and approve it. Does the WP registration system do all of this?

in reply to: user approve notification errot #174526

Samantha Brooks
Participant

We have updated those on the stagings site.

I would like to send a screenshot but that’s not possible.

When a user registers, they receive a pop-up message in red that we want to change. It currently says:

“Error: An email has been sent to the site administrator. The administrator will review the information that has been submitted and will either approve or deny your request. You will receive an email with instructions on what you will need to do next”.

in reply to: user approve notification errot #174491

Samantha Brooks
Participant
This reply has been marked as private.
Viewing 10 posts - 1 through 10 (of 10 total)