• Resolved Fallbrook

    (@fallbrook)


    Hello,

    I am experiencing an issue with the “No feed items found” message that I believe may be related to a time-zone issue.

    Just to lay some foundation on what I have done so far. I have successfully installed the plugin and imported the test feed (WP Mayor), and those feed items import just fine. I have tested other themes (2012) and have ruled out any possible plugin conflict so we are good there. I have also ruled out a cron job issue. Again, the plugin works fine when importing and displaying the WP Mayor test feed.

    I am trying to import a feed from my Events Calendar on another site I host and bring the current events onto a second website. When I ‘fetch’ the feed, the events show up correctly in my feed items, however they show up as “scheduled” on the feed item list even thought the actual events are ‘published’ and live on my second site.

    I live in Australia where my sites are hosted and we use the DD/MM/YYYY date format and I am wondering if that could be causing the issue… Has anyone else encountered this? Any help to resolve this is greatly appreciated and thanks to the dev’s for a great plugin.

    https://wordpress.org/plugins/wp-rss-aggregator/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter Fallbrook

    (@fallbrook)

    Just an update, the feed link seems to be slowly showing feed items now. Out of 25 ‘pulled’ feed items (showing in the feed items list), there are now 5 items showing on the page with my shortcode on it… maybe it’s just taking a while to post them within the plugin?

    Thread Starter Fallbrook

    (@fallbrook)

    Resolved. I found a post about 12 pages in that had code that allows you to display future events. For some reason, the more recent code used did not work. This one however does:

    add_filter( ‘wprss_display_feed_items_query’, ‘my_show_future_posts’, 10, 2 );
    function my_show_future_posts( $args, $settings ) {
    // $args[‘order’] = ‘ASC’; // Reverses the sort order
    $args[‘post_status’] = array(‘publish’, ‘future’);

    return $args;
    }

    Just put that in your functions.php page and you’re set.

    Hi,

    I apologize for the delay in replying. Glad that you were able to figure out a solution for the feed items not importing issue.

    Regards

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘No feed items found (Importing Events Calendar feed)’ is closed to new replies.