tormy
Forum Replies Created
-
DEBUG 2:
The
IF
andWHILE
at Line 189 is introducing the incomplete<image</image>
tag at the end of the RSS feed. It’s not the function “remove_Action
” as I supposed in my first commentMISTYPING CORRECTION: in the above comment I erroneously wrote “sh*t” but it’s a stupid mistyping I didn’t recognize it and I can’t edit the comment. I’m sorry. The phrase had to start “The feed it should be”.
My apologizesDEBUG
the feed it shit: https://www.radiobluitalia.net/feed/podcast/30-minuti
I did notice that this line code (line 112 into /template/feed-podcast.php) doesn’t return the correct URL of the podcast.
It should be https://www.radiobluitalia.net/podcasts/30-minuti/
While it returns just the DOMAIN the variableFEED-PODCAST.PHP
The line 2 generated, has this remark from the validator
In addition, interoperability with the widest range of feed readers could be improved by implementing the following recommendations.
line 2, column 149: Use of unknown namespace: ttp://www.google.com/schemas/play-podcasts/1.0let’s go further
The function ssp_feed_channel_link_tag doesn’t add the
/podcasts/
subdirectory.112: <?php echo esc_url( apply_filters( 'ssp_feed_channel_link_tag', $home_url, $podcast_series ) ) ?>
If I turn the line above into
<link><?php echo $feed_link ?></link>
then it works.
Of course all the other issues are opened. Please can you check and validate your code?Lines 179/180 seem do not work correctly:
179: // Prevent WP core from outputting an <image> element
180: remove_action( 'rss2_head', 'rss2_site_icon' );
indeed the<image>
tag at the very end of the feed and without<link></link>
is generatedCONTROLLER FEED
Into /controllers/class-feed-controller.php
line 185 is$itunes_explicit = $is_explicit ? 'yes' : 'clean';
It should be$itunes_explicit = $is_explicit ? 'yes' : 'false';
Line 304 is$itunes_explicit_flag = 'clean';
it should be$itunes_explicit_flag = 'false';
RELEASE UN UPDATE AS SOON AS POSSIBLE
- This reply was modified 1 year, 5 months ago by tormy. Reason: added details
- This reply was modified 1 year, 5 months ago by tormy. Reason: Added details about lines 179 and 180
- This reply was modified 1 year, 5 months ago by tormy. Reason: More complete debug
- This reply was modified 1 year, 5 months ago by tormy.
Yes the 3.0.8.3 fixed the issue. that’s why I turned the topic into “solved” status