Hello,
Do you still experience this issue?
Best regards,
Alexandra
Hello ,
Has any one found a way around it yet?
Hello,
We are aware of this and it is an issue we are trying to get resolved in the next update.
We apologize for the inconvenience.
Best regards,
Alexandra
Hey! I cracked the code last night with a friend (at least for my form – hope it can help you guys). We found a fail in the <input> … I am not a developer, so I think I will just paste it in and not try to explain what’s wrong 😀
My input as it was:
<input required="required" type="text" name="myname" placeholder="<?php _e('Navn','zerif-lite'); ?>" class="form-control input-box" value="<?php if(isset($_POST['myname'])) echo esc_attr($_POST['myname']);?>">
And how it is now (working):
<input required="required" id="formName" type="text" name="myname" placeholder="<?php _e('Navn','zerif-lite'); ?>" class="form-control input-box" value="<?php if(isset($_POST['myname']) && $hasError) echo esc_attr($_POST['myname']);?>">
… so we added && $hasError) .
Good luck