@baesl7 how do link to the podcasts up until 3 weeks ago? I see right now that each podcast goes to the podcast RSS feed for the episode list.
You can find each podcasts episodes at /series/podcast-show-title, example: https://wsncradio.org/series/africa-world-now/
@gilelnatan I am seeing that your RSS feed is loading but the stylesheet is broken.
@suhails digging further, it looks like your RSS feed stylesheet is returning a 304 error response from the server.. possibly related to caching/compression issue. If you view source for your RSS feed, it’s in tact. The issue is with the browser loading the stylesheet it seems.
You can disable the stylesheet completely by putting using the following filter in your theme’s functions.php file. This will allow you to at least easily view your feed easily while you investigate why the server is returning a 304 response for the stylesheet.
add_filter( 'ssp_enable_rss_stylesheet', '__return_false' );