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

    (@zahardoc)

    Hi @cjmclean,

    Yes, its possible with the ssp_html_player_data filter.

    Example:

    add_filter( 'ssp_html_player_data', function ( $data ) {
    	global $post;
    	if ( 111 === $post->ID ) {
    		$data['player_mode'] = 'light';
    	}
    
    	return $data;
    } );

    Hope this helps,

    Serhiy.

    Thread Starter craftylion

    (@cjmclean)

    So how does one switch between the two different player designs?

    Plugin Author Serhiy Zakharchenko

    (@zahardoc)

    Hi @cjmclean,

    You can use the code snippet I provided and adjust it to your needs. If you have no PHP experience, I would suggest hiring a developer who could implement it for you.

    Best regards,
    Serhiy.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Redesigning player’ is closed to new replies.