Hello,
The default page layout is Text, Details, Venue, Tickets
I want text, Tickets, Details, Venue.
From here: https://theeventscalendar.com/moving-the-ticket-form/ I get the php to move the Tickets to the place I want with
add_action(‘tribe_events_single_event_before_the_content’, array(TribeWooTickets::get_instance(), ‘front_end_tickets_form’));
But
remove_action(‘tribe_events_single_event_after_the_meta’, array(TribeWooTickets::get_instance(), ‘front_end_tickets_form’));
is not removing the default Tickets.
Can someone give me the proper php for remove_action
Thank you