Events to RSS feed

Home Forums Calendar Products Events Calendar PRO Events to RSS feed

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #937826
    Bill
    Participant

    George you wrote me the following

    George
    January 26, 2015| Permalink
    Hey Bill,

    I’m not quite sure what your last reply is asking, but the function

    1
    events_rss2_namespace()
    is not a function from anywhere in any Modern Tribe plugin.

    For issues related to FeedPress or other plugins on your site, your best bet is to contact customer support for those specific products.

    Since we’ve resolved some of your original questions here, I’m going to go ahead and close this ticket for now. If you have other issues that pop up and are directly because of The Events Calendar or Events PRO itself, don’t hesitate to come back and open up a new ticket.

    Thanks,
    George

    I reply

    I find it odd that events_rss2_namespace() is not considered a legitimate call for Tribe EVENT PRO.

    It is clearly shown at https://theeventscalendar.com/knowledgebase/rss-feed/ to include start and end dates.

    // Add Tribe Event Namespace
    add_filter( ‘rss2_ns’, ‘events_rss2_namespace’ );

    Whether I actually needs to add this I don’t know, but there it is.

    I was also sent a snip from support on a possible way to call a specific event category for the

    #937862
    Bill
    Participant

    I have got this to work per the rss-feed post

    //* ADD TRIBE FEATURED EVENTS TO RSS
    function add_events_to_rss_feed( $args ) {
      if ( isset( $args['feed'] ) && !isset( $args['post_type'] ) )
        $args['post_type'] = array('post', 'tribe_events');
      return $args;
    }
     
    add_filter( 'request', 'add_events_to_rss_feed' );

    I know support can’t help anymore, but if anyone can please give me clue about how to add something like

    if ( ! tribe_is_event() && is_tax('featured-events-calendar') ) return;

    So I can have only a certain category of events be added instead of all, then I can have just important events go to feed rather than all and recurring.

    Any help from the TEC community would be greatly appreciated.

    #938083
    Geoff
    Member

    Hi there, Bill! I’ll leave this thread open for a little while to see if any tips come in from the community. Keep us posted if you hit any progress.

    Cheers!
    Geoff

    #939066
    Bill
    Participant

    This reply is private.

    #939111
    Geoff
    Member

    Hi there, Bill! Thanks for following up.

    That certainly sounds like a reasonable workaround. Admittedly, I am unfamiliar with the FeedPress plugin and have not worked with it. I would suggest testing that method out and reaching out to the FeedPress team for specific guidance on how the plugin aggregates its feeds based on the settings that are selected.

    Cheers!
    Geoff

    #943067
    Geoff
    Member

    Hey there, Bill! I’m going to go ahead and close this thread since it’s been pretty quiet for more than a couple of weeks. Please feel free to start a new one if any other questions come up and we would be happy to help out.

    Cheers!
    Geoff

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Events to RSS feed’ is closed to new replies.