The problem is that when the “Subscribe in registration from ” MaiPoet/ Settings/ Basics option is FALSE/ Disabled/ Off,
and a new user is being registered on our site,
The MailPoet doesn’t learn of him/ her until he/ she registers to the newsletter list.
Check this expected usage scenario:
1. A user registers on our site and receives the system registration emails (confirmation link and final confirmation of the registration process).
2. After a while, the user decides to also register on the newsletter lists.
3. It is then that the MailPoet list is syncing with the site and records the customer on its lists. It is then that the mailPoet recognises the customer as a customer and not the moment of the confirmation mentioned earlier.
4. MailPoet thinks this is a new customer, even though it might have been hours/ days/ months since he registered -or something else had triggered the MailPoets syncing.
5. The old customer – new subscriber receives an email welcoming him/ her to the site and announcing the registration, even though this is a procedure already done.
–This is a major UX issue since the user loses trust in the site if he/ she doubts the registration process.
Wasn’t I already registered to the site?
Why these emails are different from the first ones?
Have I done something wrong on this site?
Should I delete my account and leave forever?
So how do we force MailPoet to sync ASAP when a new user is registered on the site as a customer but not a newsletter subscriber?
]]>What I want is, that when I am clicking on the site ?my account“, I can see 2 blocks. The left one should be for existing customers, where they can sign in with email and password. the right box should be for people, who want to register for the first time. so for creating a new account.
Actually I only have one box for sign in. There is no box for new registrations…
And I do nit know how I can create this.
Can you please help me… thank you very much
]]>// Woocommerce New Customer Admin Notification Email
add_action(‘woocommerce_created_customer’, ‘admin_email_on_registration’);
function admin_email_on_registration() {
$user_id = get_current_user_id();
wp_new_user_notification( $user_id );
}
Which I got from the user @Toto on the thread https://www.ads-software.com/support/topic/woocommerce-new-registration-not-sending-email-to-admin?replies=3#post-4374790
I am getting the email when a new customer registers, but the User Name and Email Address in the email is blank, so I do not know who the new customer is. This is important, because I have some clients from my irl store that I need to transfer their loyalty points to their online account. Does anyone know what I have done wrong in the code above?
Thanks!
https://www.ads-software.com/plugins/woocommerce/
]]>// More error checking
$reg_errors = new WP_Error();
do_action( 'register_post', $sanitized_user_login, $user_email, $reg_errors );
$reg_errors = apply_filters( 'registration_errors', $reg_errors, $sanitized_user_login, $user_email );
if ( $reg_errors->get_error_code() ) {
$woocommerce->add_error( $reg_errors->get_error_message() );
return;
}
This looks good so far. But when I compare it to the method process_checkout() in /classes/class-wc-checkout.php I find this:
$reg_errors = new WP_Error();
do_action( 'woocommerce_register_post', $this->posted['account_username'], $this->posted['billing_email'], $reg_errors );
$errors = apply_filters( 'woocommerce_registration_errors', $reg_errors, $this->posted['account_username'], $this->posted['billing_email'] );
// if there are no errors, let's create the user account
if ( ! $reg_errors->get_error_code() ) {
So it looks like the checkout method is using the filter hook ‘woocommerce_registration_errors’ while the regular user registration is using ‘registration_errors’.
But what’s even more puzzling is, that the checkout method is assigning the results from the filter to variable $errors but then checking variable $reg_errors.
Is this a bug or am I not getting this right?
https://www.ads-software.com/plugins/woocommerce/
]]>I have a client who needs a site to sell products and have people signup and pay for retreats. They will also need to be able to create accounts, in which they can see their orders and their retreat reservations.
I need a secure CRM solution to store customer information, including secure payment information, that is easily managed by my client.
Anybody know of any such solutions?
]]>I don’t know how to make the registration facility to my wordpress website, can you please advice me for the same, that how can i add that registration, so that any body can register on our website. also login facility, and if login then some other view / menu etc. how can i make that.
is there any plugin / widgets available for that then please provide me the link or information.
please do the needful.
Thanks in Advance.
]]>