• Hello
    Although this plugin made my life much more easier for the websites that I develop , I was wondering if there is a way to make a feature – modification to make it even better.
    Basically what I want to achieve is that is in a RSS Feed to skip the first feed item as it displayed somewhere else on the website and I want to avoid duplication.
    for example if the feed items are as follows :
    *Feed item 1
    *Feed item 2
    *Feed item 3
    *Feed item 4
    and so on, the displayed result to be :
    *Feed item 2
    *Feed item 3
    *Feed item 4
    Any ides how can I tweak the code (ideally with a new shortcode)

    https://www.ads-software.com/plugins/hungryfeed/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Contributor Jason

    (@verysimple)

    It’s bit of a unique request, but it can be pretty easily done with a bit of custom CSS code like so:

    .hungryfeed_item:first-child {
    	display: none;
    }
    Thread Starter kopis.dev

    (@kopisdev)

    Thank you for your quick reply .
    It does sound a bit unusual on its own but we trying to achieve is using twice the same feed with different formating each time. The first time to be the featured post (together with image and excerpt ) and the second title just the title. So I need to hide on the second feed the first item as it appears above in the first feed.

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