What is SourceDrop?
<?php
// display event category description if were on a category page //
if(is_tax()) {
$tribe_ecp = TribeEvents::instance();
$current_cat = get_query_var('tribe_events_cat');
if($current_cat){
$term_info = get_term_by('slug',$current_cat,$tribe_ecp->get_event_taxonomy());
echo $term_info->description;
}
}
?>