Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #1059548

    I am running videos from Vimeo using the URL method. I have a problem with the spacing. For some reason they are truncated and not showing the controls at the bottom
    See https://bigrigwraps.ultek.com/bigrigwraps/clients/jensen/ and

    Also do I need to have the play icon included on the graphic, or does the player display it? Currently I have to click twice to play it.

    #1059588

    Dear Bubu – it would be very nice if approaches to solutions that lead to the goal would also be positively decided.
    https://kriesi.at/support/topic/header-logo-gets-cropped-when-shrinking-on-sticky/

    #1060240

    Hi,

    Thank you @Guenni!

    Best regards,
    Basilis

    #1061435

    I dont quite understand the answer to the video cropping issue. The header logo has been resolved with a code change and it works great.

    On https://bigrigwraps.ultek.com/bigrigwraps/clients/jensen/ there are 2 videos, first one uses Full Screen Slider and second uses Color Select (set as background). This is a VIMEO set as 16:9 with controls visible. For some reason the controls are not displayed. Is this a VIMEO issue of ENFOLD?

    #1062257

    Hi bubu,

    Can you give us temporary admin access to your website in the private content box below, so that we can have a closer look?

    Best regards,
    Victoria

    #1062407

    Thanks for the reply.

    I have posted the requested info in the Private Content area. Hope it helps.
    Thanks for looking into it

    #1065173

    Hi,
    Sorry for the late reply, for your video on your homepage I wrote a script that plays the video on one click, I purposely targeted only the homepage video to test, but if you have other videos we could add a unique class to all the videos with the Enfold Theme Options > Layout Builder > Show element options for developers option and then adjust the script.
    I added this function to your functions.php:

    //play fullscreen video on one click
    function play_video_on_one_click(){
    	?>
    	<script>
    	(function($){
    		$(window).load(function() {
    			$('#top.home #fullscreen_slider_1').on('click', function(){
    				$('#top.home #fullscreen_slider_1 .av-click-overlay').trigger('click');
    			})
    		});
    	})(jQuery);
    	</script>
    	<?php
    	}
    	add_action('wp_footer', 'play_video_on_one_click');

    Please clear your browser cache and check.

    Best regards,
    Mike

Viewing 7 posts - 1 through 7 (of 7 total)
  • You must be logged in to reply to this topic.