Okay
  Public Ticket #2983268
Theme Harvin
Closed

Comments

  •  1
    Vlad started the conversation

    Good afternoon! 

    I bought and use your theme Hervin 
    I want to change that when you click on the project would open a link, or more specifically a video or popup. And now it goes to the project page. (Here is my site http://a0633399.xsph.ru/ )
    Is it possible to change it somehow? 
    Thanks for the reply

  •  1,808
    Support replied

    Hi Vlad,

    you could build a grid of image pop ups - check for example the three columns row in this portfolio page:

    http://clapat.ro/themes/hervin-wordpress/hervin_portfolio/cross-bike/

    Thank you.

    Clapat Support

    https://www.clapat.com/

    Review Envato Item Support Policy

  •  1
    Vlad replied

    Thanks for the reply! 
    1.I need something else, for example: a page of projects and a popup window with videos pops up when you click on it. 

    2. I also noticed that the site does not update on iOs Safari (Iphone X)
    When I need to refresh the page (swipe down and the page refreshes). But on my site with your template does not refresh anything, and appears on top of the block (screenshot attached). 
    Refresh can only click on the button "refresh page", and with a swipe does not work

    3. I added the video as a case background. And how do I make the video autoplay on my mobile device? 

    check out my website  http://a0633399.xsph.ru/

  •  1,808
    Support replied

    Hi Vlad,

    1. Hervin does not support pop up videos, only pop up images. You can use a plugin, however it may not support ajax page transitions (customizer -> general settings -> enable ajax)

    2. one additional question: does it happen on our demo too?

    http://clapat.ro/themes/hervin-wordpress/

    3.It is not recommended, as a general practice, having videos autoplaying on mobile (taking in consideration different data mobile plans and different networks streaming speeds). Also, the problem with ios devices is they interpret the HTML 5 videos as videos without player so they will embed it it in a popup player. You should provide a poster image (hero image) for mobile in video portfolio options.

    However, to enable video on mobile try the following:

    1. add

    @media only screen and (max-width: 1024px){      

          .hero-video-wrapper {         

               display: block;         

               visibility: visible;      

          }

    }

    in customizer -> additional CSS

    2. open/js.scripts.js and remove the following lines:

    var viewportWidth = $(window).width(); 

    if (viewportWidth < 1024) {      

         $('.hero-video-wrapper').remove();   

    }

    hard refresh the page (Ctrl+F5) when you are done.

    3.  go to showcase-page.php and change the following line

    <video loop muted class="bgvid">

    to

    <video loop muted playsinline class="bgvid">

    same thing for /sections/hero_section_container.php  line 51

    Thank you.

    Clapat Support

    https://www.clapat.com/

    Review Envato Item Support Policy

  •  1
    Vlad replied

    Okay, thank you.