Hi matus,
No worries, I can help you with this.
In the single-organizer.php template you moved to your theme. (If you need help with that please consult the themer’s guide)
https://theeventscalendar.com/support/documentation/events-calendar-themers-guide/
Look for this coding around line 62
<?php echo tribe_include_view_list( array('organizer' => get_the_ID(), 'eventDisplay' => 'upcoming', apply_filters( 'tribe_events_single_organizer_posts_per_page', 100 ) ) )?>
You are going to want to change this part:
'eventDisplay' => 'upcoming'
To this:
'eventDisplay' => 'all'
So switch upcoming to all. That should do it, let me know if you have issues with that.
Thanks