Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #692741

    Hello, first, thank you for creating this excellent tool for WordPress.

    We want to show a video clip before loading the contents of a page, I have no problem with loading the video clip, but I have not made this video available before loading the content of the page, for example instead the Page Preloading or right at that moment.

    You can help me in relation to Enfold, how could play the video clip before the content of the page.

    Than you,

    Juan C

    #694085

    Hey,

    You could use a popup video that runs on page load:

    <a href='video url here' id='pop-me'>Video</a>
    

    PHP/JS:

    function add_custom_script(){
    ?>
    <script>
    (function($){
        $("#pop-me").trigger('click');
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_script');

    Best regards,
    Josue

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