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 ?

    Hi

    Am I right that you only see the non working video in Chrome?

    Thanks
    Paul

    ludo974 Can help me please ?

    Hi

    Your video is correctly working , just click on the video some pixels at bottom , you can try to change your video image from youtube settings adding a new image ( not so large ) -

    Hope it helps

    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?

        8 days later

        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

          pavit locked the discussion.
          Write a Reply...
          You need to Login to view replies.