Viewing 3 replies - 1 through 3 (of 3 total)
  • I would love to know how to remove this too.

    Plugin Author Brian Hogg

    (@brianhogg)

    While the plugin is designed primarily for the free version (which doesn’t include recurring events), doing something like this should do the trick to only show the start date and start/end time:

    function test_show_date_only( $output ) {
    	return tribe_get_start_date() . ' - ' . tribe_get_end_date( null, false, get_option( 'time_format' ) );
    }
    
    add_filter( 'ecs_event_list_details', 'test_show_date_only' );

    If you place that in a functional plugin it should do the trick! You could also place it inside your theme’s functions.php file, but if you update your theme you’d lose the changes.

    Great, thanks so much for the reply!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘HIDE Recurring Event info’ is closed to new replies.