I have problem with encoding of Event Calendar. I succesfully tried to make some adjustments in custom theme with this guide: https://theeventscalendar.com/knowledgebase/themers-guide/
It went allright, changes are visible, but i have trouble – when i hardcode there something with speciall czech charakters, it shows question marks instead of these special charakters. But the rest of the page shows the same characters well – problem is only on those modified places. Example of code in list/nav.php:
<ul class="tribe-events-sub-nav">
<!-- Left Navigation -->
<?php if ( tribe_has_previous_event() ) : ?>
<li class="<?php echo esc_attr( tribe_left_navigation_classes() ); ?>">
" rel="prev">Minulé žádané akce
<!-- .tribe-events-nav-left -->
<?php endif; ?>
<!-- Right Navigation -->
<?php if ( tribe_has_next_event() ) : ?>
<li class="<?php echo esc_attr( tribe_right_navigation_classes() ); ?>">
" rel="next"><?php printf( __( 'Next %s <span>»</span>', 'the-events-calendar' ), $events_label_plural ); ?>
<!-- .tribe-events-nav-right -->
<?php endif; ?>