Viewing 19 posts - 1 through 19 (of 19 total)
  • Author
    Posts
  • #595783

    We want to remove the mouse over loading/pause image that appears in the center of the video on mouse over.

    vimeo is the host of the video. How can we do this?

    #595856

    Hi JM33480!

    Your page could not load at all, please check and let us know so we can recheck.

    Cheers!
    Basilis

    #596003

    Hi again. It seems to load fine for me…. could you try it again?

    #596129

    Hi!

    Please use the below css in Enfold > General styling > Quick CSS

    .player .controls .play {
         display:none;
    }

    Cheers!
    Vinay Kashyap

    #596458

    Didn’t work. Still showing the image image on mouse over in the center of the full page video.

    #597131

    Hi,

    Please try the following instead:

    button.play {
    display:none !important;
    }

    If that doesn’t work then please post admin login details and we’ll have a closer look.

    Thanks,
    Rikard

    #597920

    I don’t think you guys understand what I want. Please take a look at the photo I posted. You can see the icon in the middle of the screen I want to get rid of.

    #597985

    Hey!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    .controls {
        display: none!important;
    }

    Regards,
    Yigit

    #598004

    Nope…. still does not work.

    vimeo is the host of the video as stated in the first post.

    #598558

    ?

    #598623

    Hi!

    Since styles are being loaded from Vimeo, we are not able to make changes on their elements by using custom CSS. As a final try, please add following code to Functions.php file in Appearance > Editor

    
    function add_custom_twitter_target(){
    ?>
    <script>
    jQuery(window).ready(function(){
    jQuery('. controls').hide();
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_twitter_target');

    Best regards,
    Yigit

    #599439

    Thanks for trying. That code just makes the whole screen white. No video show’s at all. Is there any host that you recommend?

    #599467

    Hey!

    We recommend youtube. It allows you to fully customize the player.

    https://developers.google.com/youtube/youtube_player_demo

    There are some online tool which you can use as well http://www.vtubetools.com/

    http://stackoverflow.com/questions/8564712/removing-the-play-on-youtube-overlay-on-embeded-videos

    Best regards,
    Vinay Kashyap

    #599918

    Thanks for the reply. Youtube is so inconsistent with load times. It hangs ALL the time. Especially during high load hours. The client would not be happy.

    #600142

    Hi,

    I’m not sure what other options you have besides those two, I guess you could host it yourself or look for a paid option with guaranteed load times, if there is such a service.

    Thanks,
    Rikard

    #750985

    Hi Guys

    I’ve been having the same problem. Found a vimeo fix.

    See: https://vimeo.com/forums/help/topic:278001

    Basically, just add ?background=1 immediately after the Vimeo embed URL, e.g: https://vimeo.com/123456789?background=1

    Worked for me.

    Cheers

    Steve

    #751243

    Hi Steve,

    Glad you found the solution and thanks for sharing :)

    Best regards,
    Nikko

    #763386

    Thanks for this! Worked for me.

    #763387

    Hi,
    That is good news, I will close this. Thank you for using Enfold.

    Best regards,
    Mike

Viewing 19 posts - 1 through 19 (of 19 total)
  • The topic ‘Fullscreen slider disable pause/play button on mouse over’ is closed to new replies.