Hey Sylvester,
Hope you’re having a good day 🙂
How I got the category description to display is by following these steps:
Make a template override of template file content.php from src/views/list to theme-folder/tribe-events/list. The code to call the necessary category description is as follows:
<?php echo category_description() ?>
Open your theme’s functions.php file, input the following code at the bottom and save your changes:
if( is_tax() ) {
echo term_description( get_queried_object_id(), 'tribe_events_cat' );
}
Let me know if you’re able to get the category description displaying as desired! Thanks for choosing PRO and have a great weekend!