• Resolved dolceremy

    (@centoasa)


    on the admin side, when I manually insert the player into my post, ssp is always very slow to load, also because the dr4opdown of the podcasts present is very long. It is possible to avoid loading this long list, and only insert the “latest” and “current” choices

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

    (@zahardoc)

    Hi @centoasa,

    You can try decreasing the max number of episodes there with the following code:

    add_filter( 'rest_episode_query', function ( $query ) {
    	$query['posts_per_page'] = ( 500 === $query['posts_per_page'] ) ?
    		1 :
    		$query['posts_per_page'];
    
    	return $query;
    } );

    Hope this helps,

    Serhiy.

    Thread Starter dolceremy

    (@centoasa)

    now works very very well!!!

    Thank you so much!

    I think it’s a great option to add to ssp settings in next release!

    Plugin Author Serhiy Zakharchenko

    (@zahardoc)

    @centoasa

    That’s great, glad it worked for you ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘admin player slow loading’ is closed to new replies.