I fig’d out the answer.. by searching similar terms from above in my code..
Here’s the answer:
in file..
wp-content\plugins\the-events-calendar\vendor\tickets\src\Tribe\Tickets.php
there is a line.. that says.. (line 273)
add_action( ‘tribe_events_single_event_after_the_meta’, array( $this, ‘front_end_tickets_form’ ), 5 );
change this to
add_action( ‘tribe_events_single_event_after_the_content’, array( $this, ‘front_end_tickets_form’ ), 5 );
and it will show below content in the main content area of the single event page, and will disappear from the sidebar.
Thanks guys..
Great plugin.