Site logo

Archived topic

Events Calendar event excerpt does not appear

6 replies · Started by jennifer on November 3, 2020

Viewing posts 1–7 of 7

Hi- I'm using the Events Calendar plugin. The event excerpt does not appear in the list view (URL in private info box) when using GP.

It appears fine when I activate theme 2020.

The event excerpt uses a normal WP excerpt: https://wordpress.org/support/article/excerpt/

Please let me know.

Hi there,

What is your excerpt setting under Customizer > Layout > Blog?

It's set as "excerpt." I've tried switching over to full content, but it doesn't change the page.

Can you try if this PHP snippet makes a difference?

add_filter( 'generate_show_excerpt', function( $excerpt ) {
    if ( is_post_type_archive( 'tribe_events' ) ) {
        return true;
    }
    return $excerpt;
} );

Adding PHP: https://docs.generatepress.com/article/adding-php/

Sorry, that snippet didn't change anything.

Just found a workaround. From the plugin settings, if I switch over to "Default Page Template" for the events template, the excerpt appears in the calendar view.

Glad to hear :)

Thanks for sharing the solution!

This archived topic is closed to new replies.