• I’m using the Events Calendar Plugin. There a special Post Type “Event” is created. The Co Authors Plugin does work for Pages and Posts but doesn’t work with the Events. The list where I can select an author doesn’t show up. I can search for an author but can’t select a?name. Is there a possibility that could work for Events also? I would appreciate an answer.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter bassgitar

    (@bassgitar)

    I used the snippet for custom post types (with the right slug), but that doesn’t change anything. The author names don’t stay in the drop down list, so that I can’t select them.

    // Use CAP plugin with CPT ‘your_cpt_slug’.
    add_filter( ‘coauthors_count_published_post_types’, function( $post_types ) {
    $post_types[] = ‘tribe_events’;
    return $post_types;
    } );
    add_post_type_support( ‘tribe_events’, ‘author’ );

    Plugin Contributor Gary Jones

    (@garyj)

    Hi!

    There’s a coauthors_supported_post_types filter (here) that you can try to use to add support for the tribe_event post type.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Co Authors Plus and Events’ is closed to new replies.