ContactFormSubmissions

{% form 'contact' %}
                  {{ form.errors | default_errors }}
                      
                        
                      

                      
                        
                      

                      
                        
                      

                      
                        
                      

              {% endform %}

When i submit contact form on landing page its redirect me to home page any tell me how to prevent this and how check weather form is submitted or not ??

Hi,

You can use AJAX for form submission to avoid redirection. Below is an example using jQuery


Use the return_to parameter on the form tag, or make one as an input with the name attribute.

https://shopify.dev/docs/api/liquid/tags/form#form-return_to

https://shopify.dev/docs/storefronts/themes/customer-engagement/add-contact-form

1 Like