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)