Redirect After Form Submission
Redirects to a specific URL after successful form submission
Add this code to your footer:
JS
<script type="text/javascript">
document.addEventListener('wpcf7mailsent', function(event) {
if ('123' == event.detail.contactFormId) { // Replace 123 with your form ID
location = 'https://example.com/thank-you/'; // Replace with your thank you page URL
}
}, false);
</script>
Snippet Feedback
Did this snippet work for you? Do you have any questions about this snippet? Leave some feedback below.
SHARED BY
9 Views