hello, I realized that my homepage video does not work anymore, the video is no longer active while it is the right youtube link. My website is up to date as well as the JA ACM module.
Can help me please ?
module hero video HS
Hi
Am I right that you only see the non working video in Chrome?
Thanks
Paul
Is there a way to make the video in the HERO module play automatically?
- Edited
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
pavit Thanks so much for your help. It also does not start automatically in Safari as well. Is there a similar fix for this?
Tested on my Safari Ver. 11.1.1 (13605.2.8) on MAC and your video automatically starts.
Regards
Also can you direct me as to how to change the name of the off canvas menu in UBER from MENU to something else. I have looked all over an cant find it even in the off-canvas.php file in my tpls/blocks folder.
Thanks
core-functionality can you direct me as to how to change the name of the off canvas menu in UBER from MENU to something else.
It is defined in this file /templates/uber/tpls/blocks/off-canvas.php around line 20
<button class="btn btn-primary off-canvas-toggle <?php $this->_c('off-canvas') ?>" type="button" data-pos="right" data-nav="#t3-off-canvas" data-effect="<?php echo $this->getParam('addon_offcanvas_effect', 'off-canvas-effect-4') ?>">
<span><?php echo JText::_( 'TPL_MENU' ); ?></span> <i class="fa fa-bars"></i>
</button>
So it is using the string TPL_MENU
to change string value you can use the language override adding your new value for it
Best regards
Thank you pavit. You are my hero!