Howdy Matt,
Welcome to our support forums and thanks for reaching out to us. I can help you on this!
What you describe seems to be true, and there’s no feed output for the organizer page. But there’s a workaround to basically change the query arguments in case there’s a query string indicating the organizer ID.
For this you’ll need to paste the snippet below in your theme’s (or child theme’s) functions.php file:
/* Tribe, get feed by organizer ID */
function tribe_alter_feed ( $query ) {
if ( !is_feed() || !tribe_is_event_query() ) return;
// set organizer if passed
if ( isset ($_REQUEST['tribe_organizer']) ) $query->set('tribe_organizer', (int)$_REQUEST['tribe_organizer']);
}
add_action( 'pre_get_posts', 'tribe_alter_feed' );
This appending an organizer parameter to the URL [site url]/events/feed/?tribe_organizer=16 the change will be triggered.
Please let me know if this works (bear in mind feeds have a strong cache in WP),
Best,
Nico