Closed NIX-CRO closed 2 months ago
there is a little bit of info in the Browser Console:
Uncaught TypeError: Cannot read properties of null (reading 'previousElementSibling')
at HTMLInputElement.wwa_auth (autoptimize_31fb59582e42cf224cf5adbdb4b3ea22.js:23:57)
wwa_auth @ autoptimize_31fb59582e42cf224cf5adbdb4b3ea22.js:23
Thank you @My1 will fix asap
any luck?
I also experience problems logging in using a form. Using standard is no problem.
I'm seeing the same behavior - the error is on this line: let wwa_username = this.parentNode.previousElementSibling.previousElementSibling.getElementsByClassName('wwa-user-name')[0].value; and the error is: "TypeError: null is not an object (evaluating 'this.parentNode.previousElementSibling.previousElementSibling.getElementsByClassName')
Changing that line to this fixed it for our site (I realize that might not work for everyone...): let wwa_username = document.getElementsByClassName("wwa-user-name")[0].value;
Is it possible to translate part of visible text to users?
btw if this is still the case, may i ask what do you mean by "visible texts"? you are always welcomed if you would like to help translate this plugin into your language :-) for shortcodes just check out files in gutenberg-src/src/wp-webauthn/languages
Hello, first of all, love your work.
On to my issue, my passwordless login works like a charm on my pc through default login form. The issue is that the login forms i tried creating with provided shortcodes and gutenberg blocks for my users that will register their custom roles through ultimate member don't work. Specificaly login block when I press "Auth" button nothing happens. I tried putting them in a custom popup (both shortcode and gutenberg block) and on a normal wordpress page. Other shortcodes Register Form, Verify Button, Authenticator List seam to work without issues and I can register authenticator and verify it is working , but when I use Login Form and press "Auth" nothing happens and nothing is loged in a Log. Could you verify this behaviour,
thanks in advance.
PS: Is it possible to translate part of visible text to users?