Hey @Fred,
I’m sorry to hear that this issue is persisting! Thanks for reaching out.
As Cliff mentioned in that last thread, excerpts by default will not process shortcodes. To modify this behavior, try adding the following line of code to your theme’s functions.php file:
add_filter( 'tribe_events_excerpt_allow_shortcode', '__return_true' );
☝️ Once you add this, have another look at your site—does anything improve with this issue?
If not, then how about if you add one more line of code so that you have this instead:
add_filter( 'tribe_events_excerpt_allow_shortcode', '__return_true' );
add_filter( 'tribe_events_excerpt_shortcode_removal', '__return_false' );
Thanks!
George