Changing the contact us form to submit to a thank you page
When visitors to your website complete your the form on the contact us page, the platform will respond with a success message. However, there may be times where you want the user to be redirected to another page (like a 'thank you' page), for example if you want to track form submissions as a conversion.
To change the form to submit to another page you'll need to make some changes to the contact us form using the page editor.
Open the contact.twig file and find the closing </form> tag.
Just before this tag enter the code shown below.
{{ shopwired.custom_form({ 'to_email': '', 'from_email': '', 'redirect_url': '', 'subject': '' }) }}
You'll now have something like the example shown below.
You'll need to complete the values for each of the fields shown here.
to_email corresponds to the email that you want to receive submissions of the form to
from_email corresponds to the email that will send the email to the to_email email address
redirect_url corresponds to the URL that you want the user to be redirected to when they complete the form
subject corresponds to the subject of the email that will be sent to you containing the form submission
As shown in the example below.
Make sure that the redirect URL you specify does exist and test the form once you have made these changes to make sure you are receiving form submissions at the specified email address.