Viewing 4 replies - 1 through 4 (of 4 total)
  • Same here. The option ‘Fullscreen Button’ in the admin screen doesn’t do anything. Seems like a bug.

    agreed. Could this be fixed?

    If you’d like, I got the option working by changing featured-video-plus/php/general.php’s line 98 from

    $embed = "\n\t" . '<iframe width="'.$size['width'].'" height="'.$size['height'].'" src="'.$src.'" type="text/html" frameborder="0" id="fvpyt'.$post_id.'"></iframe>' . "\n";

    to:

    $embed = "\n\t" . '<iframe width="'.$size['width'].'" height="'.$size['height'].'" src="'.$src.'" type="text/html" frameborder="0" id="fvpyt'.$post_id.'"' .$isfullscreen.' ></iframe>' . "\n";

    And then by inserting this line:

    $isfullscreen = isset($options['youtube']['fs']) ? 'allowfullscreen' : '';

    Between lines 95 and 96.

    Sharon

    (@prettybiddy)

    Hi – Is this still the code fix to general.php to get fullscreen option to work?

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Missing allowfullscreen’ is closed to new replies.