Plugin Contributor
webnus
(@webnus)
Hello,
RSS Address is: HTTP(s)://example.com/events/feed
On the main demo: http://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
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
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
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,