Disabling mousenter and mouseleave events in /js/scripts.js should be the same. To mark the video item with autoplay try opening \wp-content\plugins\manifesto-core-plugin\include\shortcodes.php (path relative to the root theme folder) and modify line 1644 from
Hey, is it possible to autoplay the hero videos when displayed in the card in any kind of showcase grid? At the moment they play on cursor hover.
If yes, please let me know how it can be done.
Thanks
Yes, however this is custom work. Need to disable first the mouserenter, mouseleave events and then set the <video> tag to autoplay.
Thank you.
Clapat Support
https://www.clapat.com/
Review Envato Item Support Policy
Hi,
Would it be possible for you to give some detailed steps on how I could do this. I would really like to implement this.
Thanks
Hi,
We take the portfolio grid as reference:
http://clapat-themes.com/wordpress/manifesto/portfolio-grid/
1. open /sections/portfolio_section_item.php (path relative to root theme folder) and modify line 53 from
<video loop muted playsinline class="bgvid">
to
<video autoplay loop muted playsinline class="bgvid">
2. disable mousenter and mousleave events in /js/scripts.js forĀ .showcase-portfolio .clapat-item .slide-inner
https://prnt.sc/VaQfkQCERk1q
Thank you.
Clapat Support
https://www.clapat.com/
Review Envato Item Support Policy
Thanks a lot! This worked like a charm. Although, how do I do the same to the portfolio grid block that I've used on my homepage?
That depends on which editor you are using? (Gutenberg or Elementor)
Thank you.
Clapat Support
https://www.clapat.com/
Review Envato Item Support Policy
I am using gutenberg
Hi there,
Disabling mousenter and mouseleave events in /js/scripts.js should be the same. To mark the video item with autoplay try opening \wp-content\plugins\manifesto-core-plugin\include\shortcodes.php (path relative to the root theme folder) and modify line 1644 from
$out .= '<video loop muted class="bgvid">';
to
$out .= '<video autoplay loop muted class="bgvid">';
https://prnt.sc/0vM7tOzJBskS
Thank you.
Clapat Support
https://www.clapat.com/
Review Envato Item Support Policy
Thanks again! This worked.