Viewing 4 replies - 1 through 4 (of 4 total)
  • Hey @pivotpoint,

    Thanks for reaching out! Moving the ticket form is possible, although it unfortunately will require some custom code ??

    We have a walkthrough for how to make these code changes for our premium version of Event Tickets Plus, which you can find here: https://theeventscalendar.com/knowledgebase/moving-the-ticket-form/

    Now, to make that snippet work with Event Tickets (the free version, and thus the RSVP form), all you would need to do is find the bit of code in that article that looks like this:

    $etp_classes = array(
        'Tribe__Tickets_Plus__Commerce__EDD__Main',
        //	'Tribe__Tickets_Plus__Commerce__Shopp__Main', // As of ETP v4.0 Shopp will generate errors when referenced, if not active. Uncomment this line if you have Shopp Active
        'Tribe__Tickets_Plus__Commerce__WPEC__Main',
        'Tribe__Tickets_Plus__Commerce__WooCommerce__Main'
    );

    And make it look like this:

    $etp_classes = array(
        'Tribe__Tickets_Plus__Commerce__EDD__Main',
        //	'Tribe__Tickets_Plus__Commerce__Shopp__Main', // As of ETP v4.0 Shopp will generate errors when referenced, if not active. Uncomment this line if you have Shopp Active
        'Tribe__Tickets_Plus__Commerce__WPEC__Main',
        'Tribe__Tickets_Plus__Commerce__WooCommerce__Main',
        'Tribe__Tickets__RSVP'
    );

    I hope that helps!

    Thanks,
    George

    Hi,
    Implemented the suggested changes, but RSVP form location is still the same…
    Has anything changed since publication of above changes?
    Rgds,
    Tom

    Seems my Avada theme is not working with the above mentioned changes.

    Found the following code that seems to work with Avada:

    if (class_exists('Tribe__Tickets__RSVP')) {
        remove_action( 'tribe_events_single_event_after_the_meta', array( Tribe__Tickets__RSVP::get_instance(), 'front_end_tickets_form' ), 5 );
        add_action( 'tribe_events_single_event_after_the_content', array( Tribe__Tickets__RSVP::get_instance(), 'front_end_tickets_form' ), 5 );
    }

    This moves the RSVP form from the right sidebar to the event page (after the content). Still need to figure out some custom CSS to get the formatting right ??

    Plugin Contributor GeoffBel

    (@geoffbel)

    Hey @venntom

    Awesome job finding a snippet that works with Avada.

    Good luck with the CSS!

    Cheers
    Geoff B.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Can RSVP section be moved to top of Event page’ is closed to new replies.