• Resolved malexander07

    (@malexander07)


    Hi, I have been using flowplayer for about 2 years and love it. However, I am switching to a wordpress site from laraval and am not able to duplicate the flowplayer experience that I currently have on my site with a vertical playlists etc. Below is what I am currently doing—please advise.

    thanks,

    Michael

    <iframe src=“consciouslivingtv.com/widgets/ecouterre” style=“border:none;width:300px;height:350px;” webkitallowfullscreen=“true” mozallowfullscreen=“true” allowfullscreen=“true”></iframe>

    https://www.ads-software.com/plugins/flowplayer5/

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

    (@grapplerulrich)

    Currently it is not possible. I am looking into how it would be possible to extend it. Will let you know once I have a working solution.

    Thread Starter malexander07

    (@malexander07)

    Okay, thanks

    Plugin Author Ulrich

    (@grapplerulrich)

    I have some code for you that you can use with version 1.13.0

    /*
     * Add playlist links
     */
    function malexander07_fp5_below_playlist( $playlist_id, $atts ) {
    	$video_number = -1;
    	foreach ( $atts as $video_id => $video ) {
    		$sources = array();
    		$video_number++;
    		echo '<a href="#" onclick="fpPlaylist' . $playlist_id . '.play(' . $video_number . ');return false;">' . $video['content'] . '</a>';
    	}
    }
    add_action( 'fp5_below_playlist', 'malexander07_fp5_below_playlist', 10, 2 );
    
    /*
     * Add editor to videos to add custom content for playlists
     */
    function malexander07_fp5_post_type_supports( $supports ) {
    	$supports[] = 'editor';
    	return $supports;
    }
    add_filter('fp5_post_type_supports','malexander07_fp5_post_type_supports');
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘switching player from laraval to wordpress’ is closed to new replies.