Viewing 16 replies (of 16 total)
  • Plugin Author Marcus (aka @msykes)

    (@netweblogic)

    I get asked this enough… so here’s a snippet that definitely works (provided the AJAX part of your booking form works too).

    paste this into your theme functions.php file and modify the url below, it’ll redirect on successful bookings.

    function my_em_booking_redirect(){
    	?>
    	jQuery(document).bind('em_booking_success', function() {
    		window.location.href = 'https://your-domain.com';
    	});
    	<?php
    }
    add_action('em_gateway_js', 'my_em_booking_redirect');
Viewing 16 replies (of 16 total)
  • The topic ‘Hook to redirect after booking’ is closed to new replies.