Hi!
Do you mean the event meta area within the single event template? If so a short snippet like this – which you could add to your theme’s functions.php file – could do the trick:
add_action( 'init', 'reposition_additional_fields', 20 );
function reposition_additional_fields() {
// Grab a reference to the method used to print additional fields
$pro_meta = TribeEventsPro::instance()->single_event_meta;
$callback = array( $pro_meta, 'additional_fields' );
// Reposition the fields
remove_action( 'tribe_events_single_event_meta_primary_section_end', $callback );
add_action( 'tribe_events_single_event_meta_primary_section_start', $callback );
}
Does that help at all here?