• Resolved Tim

    (@thegreentimtam)


    Hey guys,

    I’ve just updated to WordPress 3.9 and I don’t have a Create Audio Playlist (or Create Video Playlist) button in the Add Media dialogue.

    Could this be due to the fact that I have removed support for video formats in my functions.php file?

    add_filter('upload_mimes', 'custom_upload_mimes');
    function custom_upload_mimes ( $existing_mimes=array() ) {
    unset( $existing_mimes['mp4'] );
    unset( $existing_mimes['m4v'] );
    unset( $existing_mimes['mov'] );
    unset( $existing_mimes['wmv'] );
    unset( $existing_mimes['avi'] );
    unset( $existing_mimes['mpg'] );
    unset( $existing_mimes['ogv'] );
    unset( $existing_mimes['3gp'] );
    unset( $existing_mimes['3g2'] );
    
    return $existing_mimes;
    }
Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter Tim

    (@thegreentimtam)

    Turns out you actually need some uploaded audio files for it to appear *facepalm*

    I have upgraded to 3.9.2.
    I have 52 mp3 files in my media library.

    I do not see any button/tab/option to create a playlist in the Media Library.

    I have deactivated old playlist plugins.

    What am I missing?

    Thanks,

    Ted

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘No "Create Audio Playlist" button.’ is closed to new replies.