Forum

Thread tagged as: Question, Configuration, Addons

Multiple forms submitting under same name.

Hi,

I have 3 forms on my site, a "wedding-form", a "booking-form" and a general "contact-form". They all submit just fine and seem to work, however in the Perch admin under apps > forms, all of the forms come up under just "Contact Form" and are not divided into their specific groups of weddings, bookings and contacts.

I have 3 separate templates and each form is called separately e.g.

<?php perch_content("contact-form"); ?>

&

<?php perch_content("booking-form"); ?> 

Yet submissions from each form end up under the same heading of "Contact form" in admin rather than being organised under 3 separate form titles.

This wouldn't be an issue, except I need each form to be emailed to a different address when submitted.

Michael Levett

Michael Levett 0 points

  • 6 years ago

Have you got different form ID's in each template?

<perch:form id="uniqueID" method="post" app="perch_forms">

Ah of course, in the templates! I was looking in the wrong place. Thanks so much! I'll be sure to look more carefully next time.

I would add for anyone else that reads this. You will need to save you contact Regions on each page with a contact form again, before this change can take effect.