Hello @kentopolis,
Thank you for bringing it to our attention. We’ll fix it in the next releases. Meanwhile, please try putting the following snippet in your functions.php:
add_filter( 'ssp_feed_item_size', function ( $size ) {
return intval( $size );
} );
Hope it will help,
Sergiy, development team.
google is still not validating and telling me I have to fix all the errors, even the ones that are simply “recommendations” from the W3C Feed Validator (https://validator.w3.org/feed/check.cgi?url=https%3A%2F%2Fwww.harmonychurch.cc%2Ffeed%2Fpodcast)
Here are the recommended fixes, any thoughts on this? I’m not sure why the plugin would be writing the spaces in HTML, also the namespace info I have no clue on…:
This feed is valid, but interoperability with the widest range of feed readers could be improved by implementing the line 2, column 147: Use of unknown namespace: http://www.google.com/schemas/play-podcasts/1.0 [help]
… casting/templates/feed-stylesheet.xsl”?><rss version=”2.0″
^
line 2, column 147: Use of unknown namespace: https://podcastindex.org/namespace/1.0 [help]
… casting/templates/feed-stylesheet.xsl”?><rss version=”2.0″
^
line 382, column 284: itunes:subtitle should not contain HTML: (6 occurrences) [help]
… n 3 today @ https://www.harmonychurch]]></itunes:subtitle>
^
line 845, column 15: itunes:summary should not contain HTML: (119 occurrences) [help]
17 Thus]]></itunes:summary>
-
This reply was modified 3 years, 9 months ago by
kentopolis.
@kentopolis
Could you please try this code snippet?
add_filter( 'ssp_feed_item_description', function ( $content ) {
return convert_chars( $content );
} );