Brian

Forum Replies Created


This reply has been marked as private, meaning that only the original poster and forum moderators can see the content of the reply.

Hi Heinz,
Just add custom js code via template settings

<!-- SMOOTH SCROLL -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script>
$(function() {
  $('a[href*=#]:not([href=#])').click(function() {
    if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
      var target = $(this.hash);
      target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
      if (target.length) {
        $('html,body').animate({
          scrollTop: target.offset().top
        }, 1000);
        return false;
      }
    }
  });
});
</script>
<!-- End of SMOOTH SCROLL -->

then give a try with smooth scroll again for the custom link


Hi terry,
Just create a menu module then assign it to offcanvas position.
Thank you


Hi Girkers,
I see, this happened because you didn’t assign the category to a menu item type. You need to create a menu item type, i.e blog then select menu item type to article -> category blog, then select the category name for the menu item.
You can submit a private ticket here https://warptheme.com/member-area/ticket-system/, i will help you correct it.


Which template that you are using ? You can add “ZOOM-IN” feature by customizing css code.
Example : https://codepen.io/lucy_wheel/pen/VxYzKP
You can implement css code for your joomla article image.


It was weekend, I just replied your ticket ID #2465, please check.




Due to autoplay policy changes, your iframe code should be

<div id="player"></div>
<script>
  var tag = document.createElement('script');
  tag.src = "https://www.youtube.com/iframe_api";
  var firstScriptTag = document.getElementsByTagName('script')[0];
  firstScriptTag.parentNode.insertBefore(tag, firstScriptTag);
  var player;
  function onYouTubeIframeAPIReady() {
    player = new YT.Player('player', {
      height: '390',
      width: '640',
      videoId: 'i6qMyrm0JuA',
      events: {
        'onReady': onPlayerReady,
        'onStateChange': onPlayerStateChange
      }
    });
  }
  function onPlayerReady(event) {
    event.target.playVideo();
  }
  var done = false;
  function onPlayerStateChange(event) {
    if (event.data == YT.PlayerState.PLAYING && !done) {
    
      done = true;
    }
  }
  function stopVideo() {
    player.stopVideo();
  }
</script>

Just replace videoid with your video id
Refer https://developers.google.com/web/updates/2017/09/autoplay-policy-changes




Hi
Quix video element does not support it. Please use custom html element with iframe instead.



Hi there,
For this case, please open joomla/templates/template-name/less/theme.less then add

.qx-fb-blank-page {
  padding: 120px;
}

after that, recompile less file via template settings then recheck.
Grandy menu overlay so the menu display above quix edit section, that why you cant click the button.
Thanks


Thread closed.