jquery-rss icon indicating copy to clipboard operation
jquery-rss copied to clipboard

Posts that are not in the selected feed are appearing

Open rafadotnechi opened this issue 3 years ago • 1 comments

Hello I'm using this plugin to parse rss from a website and a random post from a german blog is showing up every now and then in parse: image

this is the code:

function startFeed() {
  $("#rss-feeds-wide").rss("https://www.blog.fiestapartyfesta.com.br/feed/",{
    layoutTemplate: '<div class="ui four stackable cards">{entries}</div>',
    entryTemplate: '<div class="ui centered blog card"><div class="image whiteBG"><a href="{url}"><img class="blogImage" src="{teaserImageUrl}"></img></a></div><div class="content"><a class="header secondary" href="{url}">{title}</a></div>',
    order: 'publishedDate',
    limit: 4
  });
}

this is how it should always appear: image

rafadotnechi avatar Feb 16 '22 16:02 rafadotnechi

You can disable this behavior by turning off the support option :)

sdepold avatar Feb 16 '22 18:02 sdepold