Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Kyle Gilman

    (@kylegilman)

    There’s no current option to disable fullscreen, but if you’re using the Video.js player you could try adding this to your custom CSS:

    .vjs-fullscreen-control.vjs-control {
        visibility: hidden;
    }
    Thread Starter Greybox

    (@greybox)

    This method works with Video.js, thank you!

    I noticed that if there are a few videos on one page, they can play at same time with Video.js enabled. Is there a way to force only one video at a time like in WordPress Default player?

    Plugin Author Kyle Gilman

    (@kylegilman)

    If you want to use the WordPress default player, use this CSS to hide the fullscreen button.

    .mejs-button.mejs-fullscreen-button {
        visibility: hidden;
    }

    I didn’t know that the WordPress default player stopped playback of other videos. Video.js doesn’t have this feature built in. You’d have to write some JavaScript. I might work on that for a future version of the plugin.

    Thread Starter Greybox

    (@greybox)

    Works perfectly fine with WordPress Default player, thank you!!!!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How to disable full screen?’ is closed to new replies.