Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Sutherland Boswell

    (@sutherlandboswell)

    I think I found the problem, in video-thumbnails.php try changing

    if ( get_option( 'video_thumbnails_set_featured' ) == 1 && get_option( 'video_thumbnails_save_media' ) == 1 && get_post_thumbnail_id( $post_id ) ) {

    to

    if ( get_option( 'video_thumbnails_set_featured' ) == 1 && get_option( 'video_thumbnails_save_media' ) == 1 && !get_post_thumbnail_id( $post_id ) ) {

    The last bit checks if there’s already a post thumbnail, but I accidentally had it reversed!

    Thread Starter rkovachev

    (@rkovachev)

    It’s OK with beta 4.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Video Thumbnails beta 3’ is closed to new replies.