All Collections
Reviews
Setup & Installation
Redirect users to thank you page after leaving a review
Redirect users to thank you page after leaving a review
Updated over a week ago

Want to redirect users to any particular page after leaving a review?

From Webflow, go to Project Settings > Custom Code > Footer code and add this snippet of text. Be sure to replace "ENTER TARGET URL HERE" with the destination URL.

<script>
document.addEventListener('montoReviewSubmitted', () => {
window.location = 'ENTER TARGET URL HERE';
});
</script>

Did this answer your question?