We do not provide support for hacks, so use them at your own risk. If you're not comfortable with coding, we recommend against using this workaround.
In order to start your thumbnail videos from the beginning every time you hover over it, you can use the following code.
First, you need to add a “Code” module to the page where your “Portfolio Grid” module is. Make sure that the “Code” module is positioned after the “Portfolio Grid” module. Then you should add the next code snippet to the “Code” module:
<script>
(function($) {
$('.masonry-item.video-hover').on('mouseenter', function() {
var video = $(this).find('video').get(0);
if (video) { video.currentTime = 0; }
});
})(jQuery);
</script>