Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • tfosnom Friend
    #192281

    Hi
    I’m using JA Slideshow in position 1or slider position to display a video from an article category. The video does display, but there are several problems. Check out the site front end here

    1. The video is cropped to around 700px wide even though its set to 900px wide, slideshow display parameters are set for 900px or more width.
    See attached screenie for more

    2. Whenever I use JA Slideshow for anything I am seeing in all browsers, horizontal scrollbar indicating that the slideshow is generating spacing way beyond normal boundaries, irrespective of embedded video parameters or slideshow’s own display parameter. I have used slideshow with much smaller things to test and same massive scrolling action occurs even without content in the article its produces the same result.
    Visit site to confirm

    3. In a responsive view I am seeing the logo being cropped, I need assistance to turn off the logo display at any resolution under 650px wide, I am calling the logo via the template manager’s insert (logo) image function.
    See attached screenie for more

    4. Has YouTube changed its autoplay parameters lately? While all videos I’m usimg for testing are set and paly automatically on Youtube, in any container I use, whether JCE media insertion, Allvideos or JA avtracklist; none autoplay at all. BTW, AVtracklist won’t display any videos for me ever (in an article) even though I followed the guide settings’

    While I do have an js onclick redirect to send you to another page after the video plays, (inserted after head via template manager) it is notthe cause of the problem, as removing it and refreshing the site makes no difference

    Ok Its been a long post :
    I hope support can resolve it as I am using slideshow to ensure responsive display of the video in position 1 or slider position on welcome page only as nothing else seems to be responsive

    Blessings Shannon


    1. resonsive-error
    2. videogap
    MoonSailor Friend
    #512286

    Hi tfosnom,

    Pls check again admin access of your site, i could not access with the account you provided.

    <blockquote>
    3. In a responsive view I am seeing the logo being cropped, I need assistance to turn off the logo display at any resolution under 650px wide, I am calling the logo via the template manager’s insert (logo) image function.
    </blockquote>

    Pls PM me with ftp access of your site, i’ll fix it for you.

    Regards

    tfosnom Friend
    #512483

    <em>@MoonSailor 397989 wrote:</em><blockquote>Hi tfosnom,
    Pls PM me with ftp access of your site, i’ll fix it for you.
    Regards</blockquote>

    Requested details PM’d over weekend with post id to this thread attached
    Thanks
    Shannon

    tfosnom Friend
    #512596

    anything happening?

    tfosnom Friend
    #512718

    <em>@tfosnom 398379 wrote:</em><blockquote>anything happening?</blockquote>

    How many times must I bump this b4 getting any answers, like I know there was a weekend in between, but with the relevent info supplied ready for start of work monday its been 48 hrs without jack ?
    Like who do I have to bribe here to get support 🙂

    MoonSailor Friend
    #512786

    Hi,

    <blockquote>
    1. The video is cropped to around 700px wide even though its set to 900px wide, slideshow display parameters are set for 900px or more width.

    2. Whenever I use JA Slideshow for anything I am seeing in all browsers, horizontal scrollbar indicating that the slideshow is generating spacing way beyond normal boundaries, irrespective of embedded video parameters or slideshow’s own display parameter. I have used slideshow with much smaller things to test and same massive scrolling action occurs even without content in the article its produces the same result.
    Visit site to confirm

    3. In a responsive view I am seeing the logo being cropped, I need assistance to turn off the logo display at any resolution under 650px wide, I am calling the logo via the template manager’s insert (logo) image function.
    See attached screenie for more
    Click image for larger version

    </blockquote>

    It’s fixed pls check again. I fixed in 2 files :

    /templates/ja_obelisk/js/script.js
    and

    /templates/ja_obelisk/tpls/blocks/spotlight-1.php

    <blockquote>
    4. Has YouTube changed its autoplay parameters lately? While all videos I’m usimg for testing are set and paly automatically on Youtube, in any container I use, whether JCE media insertion, Allvideos or JA avtracklist; none autoplay at all. BTW, AVtracklist won’t display any videos for me ever (in an article) even though I followed the guide settings’
    </blockquote>

    It need changing in code – and will be applied for all items videos. Pls open file “/modules/mod_jaslideshow/helpers/helper.php” find code:


    $context = '<div class="ja-slide-video" style="padding-bottom: ' . ($height / $width * 100) . '%"><iframe id="youtube-' . JApplication::stringURLSafe($item['vid']) . '" wmode="Opaque" src="' . $item['src'] . '" data-src="' . $item['src'] . '" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>';

    and change it.

    tfosnom Friend
    #512859

    <em>@MoonSailor 398619 wrote:</em><blockquote>Hi,

    It need changing in code – and will be applied for all items videos. Pls open file “/modules/mod_jaslideshow/helpers/helper.php” find code:


    $context = '<div class="ja-slide-video" style="padding-bottom: ' . ($height / $width * 100) . '%"><iframe id="youtube-' . JApplication::stringURLSafe($item['vid']) . '" wmode="Opaque" src="' . $item['src'] . '" data-src="' . $item['src'] . '" frameborder="0" autoplay="1" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>';

    and change it.</blockquote>

    Thanks for your hard work, I need clarification on changing slideshow to autoplay videos, do I change the existing code by just adding an “autoplay= “1” as in the code block below or something else.?


    $context = '<div class="ja-slide-video" style="padding-bottom: ' . ($height / $width * 100) . '%"><iframe id="youtube-' . JApplication::stringURLSafe($item['vid']) . '" wmode="Opaque" src="' . $item['src'] . '" data-src="' . $item['src'] . '" frameborder="0" autoplay="1" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>';

    Also an unresolved issue asked previously regarding the responsive logo display.
    How do I turn off the desktop logo at resolutions less than 620 px wide?

    Thanks again
    Shannon

    MoonSailor Friend
    #512943

    Hi,

    <blockquote>
    Thanks for your hard work, I need clarification on changing slideshow to autoplay videos, do I change the existing code by just adding an “autoplay= “1” as in the code block below or something else.?
    </blockquote>

    Open file “modules/mod_jaslideshow/helpers/helper.php” , find code


    function youtubeCodeEmbed($vCode)
    {
    return '//youtube.com/embed/' . $vCode . '?controls=0&showinfo=0&wmode=transparent';
    }

    then change it to


    function youtubeCodeEmbed($vCode)
    {
    return '//youtube.com/embed/' . $vCode . '?controls=0&showinfo=0&wmode=transparent&autoplay=1';
    }

    Note : in your site, i changed it for you.

    <blockquote>
    Also an unresolved issue asked previously regarding the responsive logo display.
    How do I turn off the desktop logo at resolutions less than 620 px wide?
    </blockquote>

    You need override css of template. Created new file “custom.css”, in folder “templates/ja_obelisk/css”, open it and add code:

    @media (max-width: 620px) {
    .logo.logo-image{
    display:none;
    }
    }

    Regards

Viewing 8 posts - 1 through 8 (of 8 total)

This topic contains 8 replies, has 2 voices, and was last updated by  MoonSailor 10 years, 8 months ago.

We moved to new unified forum. Please post all new support queries in our New Forum