• Resolved Wiseguy71

    (@wiseguy71)


    Hi everyone
    I am looking for a way to include an order summary and thank you page into EM.

    The idea:
    After filling out the event form clicking on “submit” a page showing the tickets ordered should be shown (confirmation page).

    After the user clicks “order” on the confirmation page the order is done and a confirmation page is shown.

    In my understanding this workflow is commonly used in online shops and as EM somehow is a shop for tickets I think it would be worth implementing that.

    Cheers
    Andi

    http://wordpress.org/extend/plugins/events-manager/

Viewing 1 replies (of 1 total)
  • agelonwl

    (@angelonwl)

    Hi,

    you can add this snippet in your theme header.php

    below this line

    <?php wp_head(); ?>

    add this

    <script>
    jQuery(document).bind('em_booking_success', function() {
      //remove the comment below to redirect to other page after booking
      window.location = 'your-domain.com';
    });
    </script>

Viewing 1 replies (of 1 total)
  • The topic ‘Order summary and thank you page’ is closed to new replies.