Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Sybre Waaijer

    (@cybr)

    Hello!

    WordPress outputs the link feeds — note that the links are outputted outside of the “The SEO Framework by..” comment “wrap.”

    TSF can only alter the feed’s contents; it does not do so for comment feeds, only for post (a.k.a. content) feeds. The toggles TSF provides do not change the feed’s protocol.

    I’m not sure I understand what unwanted behavior you are encountering. Could you elaborate by answering these two questions:
    1. What do you have now?
    2. What do you want to have instead?

    Thank you!

    Thread Starter nudnavda

    (@nudnavda)

    Thanks for the precise reply.

    1. I have a page with audio files, presented as a playlist (via plugin Cue):
      https://gedel.nl/vuurvocht/
      My podcast client Podcast Addict has no problem with the standard feed of this url. But regular Feed apps like Feeder or Feedbro cannot handle it.
    2. There seems to be stuff (‘comments’) that blocks the WordPress function for producing feeds. I tried to find left over items of previous plugins, but no success. And I deactivated comments in WordPress, as I don’t use them on this site. So it would be nice if this could be cleared somehow – and I turned to you as a potential option for help 🙂

    Thanks again!

    Plugin Author Sybre Waaijer

    (@cybr)

    Hi again!

    I think I understand the issue now. I do not know why WordPress outputs that feed when comments are disabled, there doesn’t appear to be a test other than a filter. So, please implement this filter on your site to remove the comments feed link.

    add_filter( 'feed_links_show_comments_feed', '__return_false' );
    

    To learn where you can install the filter, please see https://tsf.fyi/docs/filters#where.

    With that implemented, the following output is removed:

    <link rel="alternate" type="application/rss+xml" title="Gedel poezie &raquo; reactiesfeed" href="https://gedel.nl/comments/feed/" />
    

    The following feed will still be outputted:

    <link rel="alternate" type="application/rss+xml" title="Gedel poezie &raquo; feed" href="https://gedel.nl/feed/" />
    

    Though I’m not sure what you can see in Podcast Addict and not in Feeder. The “gecorrigeerde” feed URL isn’t outputted via the metadata of the page, so neither RSS reader should be able to retrieve that link automatically.

    Thread Starter nudnavda

    (@nudnavda)

    Thanks so much, Sybre, for your support!
    I integrated your filter on the site, so the comments-message has been cleared.
    Then, I concentrated on delivering a working rss-link – which for most rss- and podcast-readers should be fine now, I hope 😉

    I really appreciate your help!
    All the best,
    ad

    Plugin Author Sybre Waaijer

    (@cybr)

    I’m glad to be able to help, Ad!

    Have a lovely (and warm) day! 😊

Viewing 5 replies - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.