Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1150674

    Hi,
    I’ve tried the following steps in this thread: https://kriesi.at/support/topic/how-to-stop-background-video-in-color-section-from-auto-looping/
    but I can’t seem to figure out how to stop the video on the homepage from looping.

    Link to site:

    Thank you!

    #1150783

    Hey Lee,

    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

    #1158267

    Login info sent privately. Thanks for your help!

    #1158582

    Hi Lee,

    Can you please make that account admin?

    Best regards,
    Victoria

    #1158583

    Done!

    #1159041

    Hi Lee,

    Thanks for setting it to admin account.
    It was just missing this code in functions.php:

    add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1);
    function avia_include_shortcode_template($paths)
    {
    	$template_url = get_stylesheet_directory();
        	array_unshift($paths, $template_url.'/shortcodes/');
    
    	return $paths;
    }

    However, your video from Vimeo doesn’t seem to stop even if the loop is set to false.
    According to https://help.vimeo.com/hc/en-us/articles/115004485728-Autoplaying-and-looping-embedded-videos you’ll just need to add loop=1 to make the video loop, so loop=0 would stop video from looping. I checked the video url (private content) using web inspector and the url parameter is correct but if you open it it does not stop looping.

    Another way to verify this issue is to go to your Vimeo Link (private content), click on Share button, click Show Options, uncheck Loop this video and other checkboxes, copy the Embed Code and paste it. Then check the video if it loops and after that do the same using another vimeo link (private content). You’ll notice your vimeo video loops while the other one is not. You can check Video Embed Test page (private content). Another test I made is to duplicate the homepage (link in private content) but I used the other vimeo link. The only difference I can think of between the 2 videos is the vimeo settings, I think it should be fixed there.

    Best regards,
    Nikko

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