WooCommerce recently changed the way how passwords are accepted (showing password strength) which might have something to do with it.
TML does add those 2 password boxes at the bottom. Why would you need TML anyways?
Thread Starter
Cking
(@jalinous)
Thanks, Kimsf!
I had the problem with strength stuff and found a solution for it and it is ok now.
I installed TML because you have the email activation option. When a new user registers, she/he gets an email and asking them to activate on the link provided to activate their account.
Do you know of any other plugin offering the same feature without causing a conflict?
Thanks,
Jay
That’s pretty hard to find since not many e-commerce stores would want users to verify an e-mail before they can buy anything.
You can try this (which may be outdated).
https://github.com/wp-plugins/woocommerce-email-verification
…Or have WooCommerce automatically generate a password (not display the field) which is then e-mailed to the user and change the text to make it look like it’s for registration. Then have a prompt once they login to be able to change the password. It’s better to have a hyperlink though.
Thread Starter
Cking
(@jalinous)
Thank you very much, Kimsf!
I removed the TML plugin and I am too worried to use that 2-year old plugin -:)!
I am using a multi-vendor plugin based on WooCommerce and I don’t want to get any conflict again.
By the way, is there any WooCommerc shortcode for logout
On WooTheme documentation page, I can only find the following:
[woocommerce_cart] – shows the cart page
[woocommerce_checkout] – shows the checkout page
[woocommerce_order_tracking] – shows the order tracking form
[woocommerce_my_account] – shows the user account page
Thank you,
Jay
Thread Starter
Cking
(@jalinous)
By the way, I found the following extension for logout for Woocommerce.
https://ww.wp.xz.cn/plugins/woocommerce-menu-extension/
Are you familiar with this extension?
Thanks!
Thread Starter
Cking
(@jalinous)
For those of you who need the logout/login option on WooCommerce site, this extension is really a great one.
https://ww.wp.xz.cn/plugins/woocommerce-menu-extension/
I tried it and it works great.
This looks helpful for making a logout link
https://github.com/woothemes/woocommerce/blob/bd4c90dbec550aefb6dca2ce7c0903e53f2110ea/templates/myaccount/my-account.php
printf(
__( 'Hello <strong>%1$s</strong> (not %1$s? <a href="%2$s">Sign out</a>).', 'woocommerce' ) . ' ',
$current_user->display_name,
wc_get_endpoint_url( 'customer-logout', '', wc_get_page_permalink( 'myaccount' ) )
);
It just directs the user to https://yourwebsite.com/my-account/customer-logout/
Thread Starter
Cking
(@jalinous)
Thanks, Kimsf!
The extension I installed gives this and other options : edit address, edit account, lost password,…
I have a big problem. My account page does not display a password field for new user registration but would display a notice for a user to fill in password when the try to register. I used extra field to create the other fields. Pls help.