Tagged: ,

Viewing 29 posts - 1 through 29 (of 29 total)
  • Author
    Posts
  • #977941

    Hi, if I upload a video directly to WordPress (no Youtube, Vimeo, etc.) how can I make it responsive?
    Wordpress does show it with the [video][/video] tag.

    I found lot’s of plugins that make embedded Youtube videos responsive, but no solution for WordPress videos.

    Thanks!! :)

    #978067

    Hey germanonline,

    Could you please give us a link to your website, we need more context to be able to help you.

    Best regards,
    Victoria

    #982268

    It works now, thank you!! … now I have just to find out how to stop self hosed videos from automatically restarting when they end =)

    #982289

    Hi,

    I’m glad you were able to get your issue resolved. Did you need additional help or shall we close this thread?

    Best regards,
    Jordan Shannon

    #982295

    Yes, i need additional help:

    How can I stop the video element from replaying (self hosted) videos automatically?
    I want the videos to stop when they are finished but they keep starting over again!!

    Thx!!

    #982741

    Hi germanonline,

    Here is a thread for you to consider
    https://kriesi.at/support/topic/auto-loop-video-element/#post-858121
    Remove the autoplay=1 attribute.

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #982788

    Since I use the video element and no short code, this doesn’t help … is there a way to stop the video element from looping? Thanks!! :)

    #982826

    Hi germanonline,

    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

    #983230
    This reply has been marked as private.
    #983252

    Hi germanonline,

    Credentials did not work for me. Could you please update the credentials?

    Best regards,
    Victoria

    #983370
    This reply has been marked as private.
    #983632

    Hi germanonline,

    Thank you, credentials worked this time.

    Could you please enable the Advanced Layout Builder debug mode. Here is how to do it:

    Best regards,
    Victoria

    #983703
    This reply has been marked as private.
    #984202

    Hi germanonline,

    Here is the code you can put in your funtions.php

    
    function rm_loop(){
    ?>
    <script>
    jQuery( document ).ready(function() {
    	jQuery('.page.page-id-28 .avia_video.av-mediajs-loaded').attr('loop', false);
    });
    </script>
    <?php
    }
    
    add_action('wp_footer', 'rm_loop');
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #984225
    This reply has been marked as private.
    #984286

    Hi,

    Yes, that should prevent the loop. Place that at the bottom of functions.php.

    Best regards,
    Jordan Shannon

    #984333
    This reply has been marked as private.
    #984860

    Hi,

    I just loaded the page and I cant see the code inside, have you removed it?

    Best regards,
    Basilis

    #985156
    This reply has been marked as private.
    #985727

    Hi,

    Yes, it has to be before the last line :)

    Best regards,
    Basilis

    #985917
    This reply has been marked as private.
    #986919
    This reply has been marked as private.
    #987617

    Hey, either the code doesn’t work or I am to stupid to add it to the right spot :/

    #987927

    The videos are still looping, the code does not work. And it is not about 1 page only. The video element should stop looping videos on all pages. Can you please tell me what to do?

    #989631

    Hi,

    I’m sorry for the late response. I adjusted the script a bit and it seems to be working as expected. It’s inside the functions.php file, right after line 17.

    Best regards,
    Ismael

    #989655

    Thank you but it works just on the homepage.
    Is there a way to make it work on all pages?

    Thx for the support!!

    #990081

    Hi,

    That was actually intended. Remove the “.page-id-IDHERE” selector from the script to make it work for every page.

    Best regards,
    Ismael

    #990127

    Thanks, it works now.
    Have a nice day.

    #990264

    Hi germanonline,

    Glad Ismael could help you :)

    If you need further assistance please let us know.
    Best regards,
    Victoria

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