I was equally surprised there is no built-in redirect after making a booking! (seems like common practive to me)
Anyway, after some tinkering (I am really a novice when it comes to coding) I figured out that the following might work – just add the line window.open… at the bottom of the bookingform.js file ??
`complete : function(){
em_booking_doing_ajax = false;
$(‘#em-loading’).remove();
window.open(‘URL’,’_self’);
}
});
return false;
});`