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

    (@phamtungpth)

    Hi george09,

    You could leave blank the [di] date field at Destination Input area.

    Best Regards!

    Thread Starter george09

    (@george09)

    Hello again and thank you for the quick reply.I have two more issues here and i need some help.I am trying to set up the plugin for an online site and now i am making some tests locally.When i test the plugin manually with the “test this pipe button” the content is looking fine inside the posts.When i test it with the cron, the posts have no videos embedded.The videos (in the feed) are inside an iframe and i use the “get Fulltext processor” with parser code parameters to grab the content.The other issue is that i want every time i call the cron, to skip all feed results except the first one(1 post each time) and not to pull posts from all my pipes at once.Thank you kindly.

    Plugin Contributor Tung Pham

    (@phamtungpth)

    Hi george09,

    Please export your pipe and send me! I will try to check the iframe issue!

    If you only want to grab the first item from the feed, you can set Limit Items as 1 (find that option in Advanced tab of the Source).

    You can mark the draft status for the pipes which you do not want cronjob to run them!

    Best Regards!

    Thread Starter george09

    (@george09)

    I have already done the setup on the “Limit items”(more options tab) but this only limits the number of posts that i grab for each pipe.I want to limit the number of posts from all my published pipes.For example: Now i have 28 pipes(1 for each category) and i want every time to grab 1 post (the most recently) from all my pipes that i have set as published.Take a look on this hook that i had add in functions.php, in order to find a solution with another plugin.
    function fwp_first_item( $data, $fwp )
    {
    static $first = true;
    if ( ! $first ) return null;
    $first = false;
    return $data;
    }
    add_filter( ‘syndicated_post’, ‘fwp_first_item’, 10, 2 );

    Here is an example of a pipe>> https://www.mediafire.com/download/d72a8cbg8zarfxi/rss-issue-video.zip The problem with the videos is the same with all my pipes (different rss feeds).Thank you again for helping me to solve this.

    Plugin Contributor Tung Pham

    (@phamtungpth)

    Hi,

    I imported your pipe on my localhost site. But after visiting cronjob link, the grabbed posts have iframe tag in content. Such as https://awesomescreenshot.com/02458veh95 is the result of https://www.newsbeast.gr/media/arthro/1950808/i-tromaktiki-empiria-pou-ezise-i-bagia-antonopoulou-ta-charamata

    Please check your systems, maybe there is anythings removed iframe tags from content!

    WP Pipes can not do as you want: detect the most recent item from all of RSS feeds you use in the pipes.

    Best Regards!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Time on Syndicated Posts’ is closed to new replies.