• Resolved dianasolapas

    (@dianasolapasmaccom)


    Not showing my events on RSS Feed

    Hello, in features says “Feed RSS” but my events doesn’t show on my feeds. I’ve been checking all the settings and I cant found anything, also I don;t have any notification to the jetpack suscribers when I publish an event.

    The plugin is great, but if doesn’t show on my feeds, my subscribers doesnt now my new events.

    Thanks

    Diana

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Contributor webnus

    (@webnus)

    Hello,

    RSS Address is: HTTP(s)://example.com/events/feed
    On the main demo: https://webnus.net/modern-events-calendar/events/feed
    On your website, you haven’t an event, If you have an event (I didn’t see events) maybe have an issue on permalinks, so please go to WordPress Dashboard > Settings > Permalinks and set a post name for all permalinks
    Also, maybe you changed the main slug of the events so use URL like this
    HTTP(s)://example.com/{MAIN_SLUG_OF_THE_EVENTS}/feed

    Warm Regards

    Thread Starter dianasolapas

    (@dianasolapasmaccom)

    Thank you, the problem was on the Events Archive Status that was disabled. and with conflict with slug options.
    Now the feeds are working.
    Thank you

    Thread Starter dianasolapas

    (@dianasolapasmaccom)

    I still have a problem, now the events show on a separate feed, not in the main, so all my subscribers (4,000) doesn’t know about the new events, I need that the feed shows in the main feed. I try to add the custom post type rss (mec-calendars) to my functions `function myfeed_request($qv) {
    if (isset($qv[‘feed’]) && !isset($qv[‘post_type’]))
    $qv[‘post_type’] = array(‘post’, ‘mec_calendars’, ‘agenda’);
    return $qv;
    }
    add_filter(‘request’, ‘myfeed_request’);`

    but is not working

    Can you help me?

    thanks

    Thread Starter dianasolapas

    (@dianasolapasmaccom)

    solved, an arror with the CPT name: “mec-events”
    so if somebody need to include the events on the main feed the code should look like this:

    // ADDS POST TYPES TO RSS FEED
    function myfeed_request($qv) {
        if (isset($qv['feed']) && !isset($qv['post_type']))
            $qv['post_type'] = array('mec-events', 'post');
        return $qv;
    }
    add_filter('request', 'myfeed_request');

    Thanks

    Plugin Contributor webnus

    (@webnus)

    Hi @dianasolapasmaccom,

    Thank you for sharing your experience with us

    Regards,

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Feed RSS’ is closed to new replies.