Viewing 1 replies (of 1 total)
  • agelonwl

    (@angelonwl)

    basically, you should allow your theme to handle custom post types and you should make your events page as post at Settings > Pages > Event Pages > Display events as;

    e.g. using default twentyeleven theme, this snippet will display events in homepage and probably you can do the same on your theme;

    add_filter( 'pre_get_posts', 'my_get_posts' );
    function my_get_posts( $query ) {
    	if ( is_home() && false == $query->query_vars['suppress_filters'] )
    		$query->set( 'post_type', array( 'post', 'event' ) );
    	return $query;
    }

Viewing 1 replies (of 1 total)

The topic ‘[Plugin: Events Manager] event list as post not page’ is closed to new replies.