• Dear support team,

    I just discovered that my feed does not show any summary – just the title. It worked until a couple of days and I did not change any settings. Is this a known issue?!

    I am running the latest version of your plugin 2.7.3 on WordPress 5.8 with latest Astra Theme 3.6.7 and the Astra Pro Plugin 3.5.7.

    My feed URL: https://miseskarma.de/feed/podcast

    Thanks in advance for your support,
    Christian

    The page I need help with: [log in to see the link]

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter Christian Leuenberg

    (@cleuenberg)

    I found the problem: In your function ssp_get_the_feed_item_content you are using the parse_blocks function and then building up the feed summary. But I am not using the Gutenberg Blocks. I now manually added the following quick-and-dirty lines of code in your file php/includes/ssp-functions.php:

    function ssp_get_the_feed_item_content() {
        $content = get_the_content();
        $blocks  = parse_blocks( $content );
        // new line:
        $is_gutenberg_page = ( ! empty( $blocks ) && '' !== $blocks[0]['blockName'] );
        // changed following if clause:
        // old: if ( $blocks and is_array( $blocks ) ) {
        // new:
        if ( !$is_gutenberg_page ) {
        […]

    I would be really happy if you could consider checking if Blocks are enabled or not in order to get the summary back into the feed.

    Thanks in advance!

    I’m having this same problem with episode descriptions disappearing. It started right after I updated to the latest version of the plugin on July 30.

    I used Christian’s code (thanks Christian!) and it fixed the issue, but it would be nice to not have to manually fix this after installing future updates.

    My feed is: https://warehouse11.creocreative.com/feed/podcast

    Barry

    (@distinctseo)

    Christian’s fix worked. Update this please.

    Plugin Support Jimmy Baum

    (@amongthestones)

    Hi there @cleuenberg, @kentotto, and @distinctseo,

    Thanks for contacting us.

    We have a plugin update coming out this week that will address this issue.

    Thanks for your patience while we solve this.

    Plugin Support keleigh824

    (@keleigh824)

    Greetings @cleuenberg, @distinctseo, @kentotto

    We’ve released version 2.8 and this update should have addressed and resolved the issue you all are experiencing. If, after the update, your feeds don’t update properly, let us know.

    Many thanks!

    Thread Starter Christian Leuenberg

    (@cleuenberg)

    Hi @keleigh824,

    thanks for the update, feed looks good!

    All the best,
    Christian

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Episode summary suddenly disappeared in RSS feed’ is closed to new replies.