getgrav / grav-plugin-feed

Grav Feed Plugin
https://getgrav.org
MIT License
16 stars 11 forks source link

Feed Subtitle / Description stays unchanged #46

Open crowbyte opened 5 years ago

crowbyte commented 5 years ago

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 "Sample Blog Description"

Is this a bug in the plugin or does it pull a description from somewhere else?

rhukster commented 5 years ago

It's a bug.. fixing...

crowbyte commented 5 years ago

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.

rhukster commented 5 years ago

Does the commit above resolve your issue?

crowbyte commented 5 years ago

On another site where did not change the page description but the plugin config for the feed description works now, too. Thank!