Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Alex

    (@ahoereth)

    The plugin uses jQuery fitVids for auto sizing the videos to their parent container. But this is only done with videos existing on page load. So for every other video which is loaded using an AJAX request later in time you need to manually recall .fitVids

    Your theme (I guess) adds this JS to your blog’s head: http://nopaste.info/1893f0574f.html
    Everything in function(entries){ is called when the site is finished loading new content. So there you have to add jQuery(".featured_video_plus").fitVids(); to start auto-resizing the newly added videos.

    I did not test this, but I reccon it will solve it just fine. All you have to do is find where the plugin actually produces this code 😉
    Hope this helps, Alex

    Thread Starter erm0613

    (@erm0613)

    I added it, but it broke our infinite scroll and the content alignment. Any advice?

    Plugin Author Alex

    (@ahoereth)

    There is already

    $(".entry-attachment, .entry-content").fitVids({ customSelector: "iframe, object, embed"});

    in the callback. Maybe you can just change it to

    $(".entry-attachment, .entry-content, .featured_video_plus").fitVids({ customSelector: "iframe, object, embed"});

    Pinboard and my plugin both include fitvids. I am not sure if this alredy results in any conflicts on it’s own..

    Thread Starter erm0613

    (@erm0613)

    That did not do anything, it still disaligns the posts in the smaller boxes and breaks the infinite scroll.

    Plugin Author Alex

    (@ahoereth)

    The line occurs twice in the JavaScript: http://nopaste.info/410798b601.html
    Line 35 and 46.
    Try changing both occurences to this:

    $(".entry-attachment, .entry-content, .featured_video_plus").fitVids({customSelector: "iframe, object, embed, .video-js"});

    and change the featured video width on your Settings -> Media to something fixed.

    Just trial and error, sry 😀

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Issues with Pinboard Theme’ is closed to new replies.