RSS-Feed for site build with page builder plugin

I am looking for a tutorial to add a feed via the feed plugin to a site that was build with the page builder plugin but cannot find any.
The standard installation of the feed plugin leaves the content empty.
Thank you in advance!

Which feed plugin?

This one: Feed Plugin https://getkirby.com/plugins/bnomei/feed

The plugins uses this snippet to output the content: https://github.com/bnomei/kirby3-feed/blob/master/snippets/feed/rss.php

As you can see, it gets the value of a given field (the field you define in the feed options) and outputs it using the kirbytext method.

Of course, that doesn’t work with a builder field, so you would have to make a copy of the snippet, put it into your /site/snippets folder and change that line to render your builder blocks (or a shortened version).

1 Like

Thank you! I will try to sort that out!