Hello @yizi,
It seems your registration form is not displaying div block “woocommerce-password-strength” . So whenever user enteres the weak password it should give the warning. See this screen shot https://prnt.sc/i7l65i
There will be two possible solution for this.
1) Unhide div “woocommerce-password-strength”, so user can enter strong password.
2) Remove password strength feature using some plugin or code. See this on google for more detail “allow weak password woocommrce”
Thread Starter
Yizi
(@yizi)
@firoz
I’ve tried strong password and still it’s greyed out. I will disable the password strength and see how that goes
Thread Starter
Yizi
(@yizi)
@firoz that did not fix the issue, can I send you the link to the store privately so you can have a look?
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
@yizi, No, information must remain public and on the forums, so only post what you’re comfortable.
Thread Starter
Yizi
(@yizi)
@anevins something I do not want to share.
I’ve tried both points mentioned by @firoz and none has resolved the issue, I’ve practically disabled all the plugins too which has had no impact. The weird thing is we haven’t done any updates on the site (core or non-core) and this suddenly happened.
@yizi is it possible for you to share website URL?
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Try emulating the relevant Webpage through a sandbox tool like CSSDesk.com (works best in Chrome):
- View your webpage;
- Right click on the page somewhere and press “View source
- A new window will appear with all the code of your page. Copy all of that code
- Go to CSSDesk.com and paste it into the “HTML” section
- Press the “Share” button in CSSDesk
- A new URL will appear to the left of the “Share” button, copy that URL and paste it here in this thread
We can then hopefully see your webpage.
Thread Starter
Yizi
(@yizi)
@anevis the CSS Desk crashes everytime I do the paste, tried it on Chrome too.
@firoz exact page, try registering a user (link removed)
-
This reply was modified 7 years ago by
Yizi.
Hello @yizi
There is an issue with Javascript written just before closing body tag. see this https://prnt.sc/i7lqgr
Replace the line
jQuery('input').keyup(function(e){
with
jQuery('input').focusout(function(e){
Let me know if it resolved your issue.
Note: Due to site load issue, try to test when all content are loads 100%.
Thread Starter
Yizi
(@yizi)
@firoz I’ve managed to fix it with the following code:
<script>
jQuery(document).ready(function(){
window.setInterval(function(){
jQuery('form.register input[type="submit"][name="register"]').removeAttr('disabled');
jQuery('form.register input[type="submit"][name="register"]').removeClass('disabled');
}, 3);
});
</script>
Also what do you mean by load issues?
I have notice that your site have some performance issue.
You can check your site performance and site speed here >> https://gtmetrix.com/ and https://developers.google.com/speed/pagespeed/insights/
Thread Starter
Yizi
(@yizi)
@firoz thanks for the info. Are you available for paid consultancy? maybe an hour of your time, skype convo?
Moderator
Jan Dembowski
(@jdembowski)
Forum Moderator and Brute Squad
thanks for the info. Are you available for paid consultancy? maybe an hour of your time, skype convo?
And that now closes this topic. See this link for details.
https://wordpress.org/support/guidelines/#do-not-offer-to-pay-for-help
These are volunteer support forums only and when the topic veers into paid support the topic is closed.
If you need paid support please consider these sites instead.
https://jobs.wordpress.net/
https://jetpack.pro/
I am now closing this topic.