I got it that time! Thanks again!
I see two things that might be causing this issue.
1. I see Litespeed cache is caching and delivering that login page, this is likely not the issue but it could be if the users are seeing this repeatedly. You will see this at the bottom of the source code:
<!-- Page supported by LiteSpeed Cache 4.3 on 2021-09-14 14:55:38 -->
2. When it comes to the WooCommerce Login Security integration, We are looking for an element with the ID primary
and that is where we are appending login messages. We check that there is a .woocommerce
element, but we don’t make sure #primary
exists. This is something we are changing in a future release.
If you add a div
on the page with id="primary"
the messages should be displayed there. It should be added by WooCommerce by default, so it might be getting overridden by your theme. If you need to, reach out to your theme provider and they should be able to add this div.
Let me know if this helps!
Thanks again!