Support » Plugin: Seriously Simple Podcasting » Podcasts being duplicated with page update

  • Resolved Daniel Alcorn

    (@daniel-alcorn)


    Hi there,

    When editing existing podcasts I’m finding wordpress duplicates the episode. This happens as many times as I click update, so if I update 3 times I get 3 new versions of the same episode.

    This happens with new episodes and existing episodes.

    I recently migrated the site to a new server and changed a few of the podcast settings. i.e:

    /**
    * Change podcast feed Number Format
    **/
    
    add_filter( 'ssp_feed_number_of_posts', 'ssp_modify_number_of_posts_in_feed' );
        function ssp_modify_number_of_posts_in_feed ( $n ) {
            return 100;
        }
    
        /**
        * Change podcast URL
        **/
    
    add_filter( 'ssp_archive_slug', 'ssp_modify_podcast_archive_slug' );
        function ssp_modify_podcast_archive_slug ( $slug ) {
          return 'podcasts';
        }
    
        /**
        * Remove episode details from below player
        **/
    
    add_filter( 'ssp_show_episode_details', '__return_false' );

    And I began splitting into series where as before there were none (I think). Not sure why any of these could’ve caused the issue though, perhaps you could help?

    Thank you

Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Podcasts being duplicated with page update’ is closed to new replies.