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

    (@zahardoc)

    Hi @kaznet,

    Could you please clarify what you need to achieve?

    Now the default podcast website address in the RSS-feed is like:
    https://podhostsite.com/category/podcastname

    It’s not an RSS feed URL, it’s a URL of your category. RSS feed URL should look like this – https://podhostsite.com/feed/podcast/podcastname.
    And, if you want to redirect it to another URL, you can use the settings here:

    Podcasting -> Settings -> Feed Details -> Redirect this feed to new URL.

    But please be aware that in this case, you’ll need to manage the new RSS feed yourself.

    Hope this helps,
    Sergiy, development team.

    Thread Starter KazNet

    (@kaznet)

    My question is:

    How can I change the podcast website address that IN the RSS-feed settings?

    Now the default podcast website address IN the RSS-feed is like:
    https://podhostsite.com/category/podcastname

    I want to add another podcast website address instead of default (which you showed me), for example link like this one:
    https://mypodwebsite.com

    Is it clearer now?

    Plugin Author Serhiy Zakharchenko

    (@zahardoc)

    @kaznet

    Oh, now I got what you mean. Please try putting this code snippet in your functions.php file:

    add_filter( 'ssp_feed_channel_link_tag', function ( $url ) {
    	return $url === 'https://podhostsite.com/category/podcastname' ? 'https://mypodwebsite.com' : $url;
    } );

    Please let me know if that helped.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to change podcast website address?’ is closed to new replies.