core-functionality Is there a way to make the video in the HERO module play automatically?
Hi
If you look your website on Firefox browser you will see your video automatically start , it doesn'r start on GChrome due to the browser limitations introduced in chrome privacy , so actually you will need to apply some changes to this file /templates/uber/acm/hero/tmpl/style-4.php
Find :
<iframe frameborder="0" width="100%" height="100%" allowfullscreen="" mozallowfullscreen="" webkitallowfullscreen="" src="<?php echo $video_src ?>"></iframe>
Change To
<iframe frameborder="0" width="100%" height="100%" allow="autoplay" allowfullscreen="" mozallowfullscreen="" webkitallowfullscreen="" src="<?php echo $video_src ?>"></iframe>
After you saved it clean your browser cache and reload the page
Regards