Descrição
This plugin has been closed as of 6 Maio, 2022 and is not available for download. This closure is temporary, pending a full review.
Avaliações
5 Janeiro, 2022
Thank you for a very nice plugin!
24 Outubro, 2020
Just wish there was a way to simply add autoplay, loop, and mute
I tried to follow @debricon's advice editing the php, but crashed the plugin and had to ssh to remove the folder to reinstall. any help adding those features simply (even in the php file) would be AMAZING.
8 Junho, 2020
That's how all the WordPress plugins should be
16 Fevereiro, 2020
This plugin works great and doesn't add bloat like a new slider system or lot of javascript !!! it adds nothing, just a html tag <video> 🙂 🙂
i use it for my woocommerce product when i want to add a video !
perfect thank you.
i edited simple-featured-video.php l.150 to add to the <video html5 :
<video autoplay muted loop
that way the video autoplay muted and loop !!
Add this script to your theme script, and now when you clic fullscreen sound gets on
if (document.addEventListener)
{
document.addEventListener('webkitfullscreenchange', exitHandler, false);
document.addEventListener('mozfullscreenchange', exitHandler, false);
document.addEventListener('fullscreenchange', exitHandler, false);
}
function exitHandler()
{
var vid = document.getElementsByClassName("sfv_videos");
if(vid[0]){
vid[0].muted = !(document.webkitIsFullScreen || document.mozFullScreen || document.fullscreen);
}
}
10 Outubro, 2019
This is a great plugin. Thank you for your work !
7 Outubro, 2019
Nice and plugin
Contribuidores e programadores
“Simple Featured Video” é software de código aberto. As seguintes pessoas contribuíram para este plugin:
ContribuidoresTraduza o “Simple Featured Video” para o seu idioma.
Interessado no desenvolvimento?
Browse the code, check out the SVN repository, or subscribe to the development log by RSS.