RSS feeds empty #3
-
RSS feeds are generated for the yearly, monthly and daily archives and the archive index. They are all empty (at least, for me). I will look into disabling them (probably with output formats?). I'm not sure a RSS feed of an archive is a useful thing, so maybe they should be disabled by default? Or, if enabled, they should have content. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
The archive's structure designates each page as a section page. Hugo's embedded RSS template inherently omits section pages when generating a section's RSS feed. This explains why the feed pages for the archive are currently empty. I've considered a couple of workarounds: overriding the embedded template, which introduces maintenance overhead, or providing a compatible example template, which isn't ideal for user experience and also requires ongoing synchronization. My preferred approach, at least for now, is to disable RSS feed generation for the archive pages. The specific implementation of this decision will depend on the resolution of: |
Beta Was this translation helpful? Give feedback.
-
Upgrade to Hugo v0.147.3, then upgrade this module to v0.6.0:
Then add this to your site configuration:
The above disables RSS feed generation. If you want to generate RSS feeds you'll need to implement your own RSS template. |
Beta Was this translation helpful? Give feedback.
Upgrade to Hugo v0.147.3, then upgrade this module to v0.6.0:
Then add this to your site configuration:
The above disables RSS feed generation. If you want to generate RSS feeds you'll need to implement your own RSS template.