• Resolved 2rovers

    (@2rovers)


    Using Bluehost / WordPress / Podcaster Theme / SSP. The “Download episode” and “Play in new window” links at the bottom of the RSS feed page cannot be found (404). Castos (SSP) support directed me to a troubleshooting page (https://support.castos.com/article/160-podcast-episodes-will-not-play#Disable-Bluehost-Plugin-Apache-only-qrzI3) where I needed to uncheck the Skip WordPress 404 Handling for Static File check box in the WordPress > Settings > General > Caching section. The problem is that there is no Skip WordPress 404 Handling for Static File check box. Any idea where to find the check box or how to make it appear? Is there a different solution to fix the RSS links?

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

Viewing 1 replies (of 1 total)
  • Plugin Author Serhiy Zakharchenko

    (@zahardoc)

    Hello @2rovers,

    I’m sorry to hear you encountered this issue. It looks like Bluehost removed this feature from their plugin. I don’t know why, so probably you can try contacting their support and asking how you can handle this option.

    Meanwhile, you can try temporarily using the real file path instead. Here is the code snippet for it, you can put it into your functions.php file:

    add_filter( 'ssp_episode_download_link', function ( $link, $episode_id, $file ) {  
    return $file;
    }, 10, 3 );

    Hope this helps, and please let me know what their support answered to you.

    Best regards,
    Serhiy.

Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.