Hi Jachyb, I see you have the same issue as me. On erikthor.com/test/personality-test it is no longer possible to send in results. On your site, the submit button is 50% opacity and in the HTML code I see:
<input type=”submit” class=”button disabled” value=”Zobacz wyniki”>
So basically, the button has been disabled and cannot be clicked on some devices (mainly mobile phones)
It may be related to the latest WP update. But I do not have the issue on https://www.archetopias.com/test/hogwarts-house/ running the latest update, so I don’t know.
I found the issue, for now, the workaround is:
In:
Plugin Editor > Wp-testing > Template > Test > Passer > fill-form.php
Edit line 28 to:
<div class=”content”><form novalidate=”novalidate”
Hope it works for you!
Best,
Erik
Thread Starter
jachyb
(@jachyb)
Many thanks, I’ll check asap if your solution works.
Jarek
Thread Starter
jachyb
(@jachyb)
Great! It works!
How can I change the opacity of the button? Can’t find anywhere this function…
In custom CSS
button.disabled {
opacity:0.5;
}
change to any value between 0 and 1.0