Skip to main content
All CollectionsReviewsSetup & 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?

You'll just need to add a little code snippet in your site's footer code.

Be sure to replace "ENTER TARGET URL HERE" with the destination URL.

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

(For Webflow, go to Project Settings > Custom Code > Footer code)

Did this answer your question?