Support

Account

Home Forums Front-end Issues My frontend form is prefilled with previous entries all the time Reply To: My frontend form is prefilled with previous entries all the time

  • Hi @naveen009

    Thanks for the questions:

    auto populate
    This is either 1 of 2 issues:
    1. Check your database post_meta table for values which have an option_name starting with “new_”. Are there any?
    2. Try editing the acf_form function and simply adding a ‘autocomplete=”false” attribute to the form element’

    multiple pre_save_post
    The trick here is to use the ‘html_after_fields’ arg to add in a hidden input with a custom value. This will get posted to the save action which you can then use to determine which form has been posted.

    Hope hat helps.

    Thanks
    E