grav-plugin-feed
grav-plugin-feed copied to clipboard
Feed Subtitle / Description stays unchanged
Although I adjust the subtitle / description for the feed in the feed plugin settings to my blog tagline in the Grav Admin panel the subtitle / description stays unchanged at "
Is this a bug in the plugin or does it pull a description from somewhere else?
It's a bug.. fixing...
I found out that I have a page folder blog/ and a blog.en.md in it. This looks like:
---
title: Blog
menu: Blog
blog_url: blog
sitemap:
changefreq: monthly
priority: 1.03
content:
items: '@self.children'
order:
by: date
dir: desc
limit: 5
pagination: true
feed:
description: 'Sample blog description'
limit: 20
pagination: true
---
Changing the feed: description: 'Sample blog description'
field, changes the feed's description perfectly. So obviously it pulls the description from there on my Grav installation.
Does the commit above resolve your issue?
On another site where did not change the page description but the plugin config for the feed description works now, too. Thank!