• Resolved GWKaplan

    (@gwkaplan)


    The problem is that when I send a message from the contact section the form does not reset. The information of the sent message its all there. And it says its been sent again. Is there any solution for this?

Viewing 6 replies - 1 through 6 (of 6 total)
  • Alexandra

    (@alexandrastan001)

    Hello,

    Do you still experience this issue?

    Best regards,
    Alexandra

    I have the same problem…

    Hello ,

    Has any one found a way around it yet?

    Same issue over here ??

    Alexandra

    (@alexandrastan001)

    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

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Contact form does not reset’ is closed to new replies.