Having trouble getting my events calendar to show on my wordpress site. I am using Agent Press 2 from Studio Press running on a Genisis platform.
I was originally showing a text layout. Support had me add a snippet to my functions.php file:
add_filter(‘genesis_pre_get_option_content_archive’, ‘tribe_genesis_avoid_archive_excerpts’);
function tribe_genesis_avoid_archive_excerpts($value) {
if ( ! tribe_is_event_query()) return $value;
return ‘content’;
}
The text format is gone but the events calendar still does not appear at buckscountyandbeyond.com/events. Looking for a solution to the problem.