Moving Eventbrite iframe box

Home Forums Ticket Products Eventbrite Tickets Moving Eventbrite iframe box

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #1093935
    Susan
    Participant

    I have managed to move the iframe box according to this page: https://theeventscalendar.com/knowledgebase/moving-the-eventbrite-tickets-box/
    However, I would like to move the iframe to the position above the “export to calendar” links. I know that this is in the content area. Is this possible?

    Link to test event: http://demo.abinko.com/avada/event/test-event-2/

    #1094722
    Nico
    Member

    Hi there Susan,

    Thanks for getting in touch! I can help you here…

    Can you please modify the snippet to use the tribe_events_single_event_after_the_content action instead of tribe_events_single_event_before_the_meta? Also lowering the priority on the call might help. The snippet should look like this:


    add_action( 'init', 'move_eb_ticket_form' );

    function move_eb_ticket_form() {
    $display_tickets = array( Tribe__Events__Tickets__Eventbrite__Main::instance(), 'print_ticket_form' );
    remove_action( 'tribe_events_single_event_after_the_meta', $display_tickets, 9 );
    add_action( 'tribe_events_single_event_after_the_content', $display_tickets, 9 );
    }

    Please give that a try and let me know if it works for you,
    Best,
    Nico

    #1101402
    Support Droid
    Keymaster

    This topic has not been active for quite some time and will now be closed.

    If you still need assistance please simply open a new topic (linking to this one if necessary)
    and one of the team will be only too happy to help.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Moving Eventbrite iframe box’ is closed to new replies.