How to embed You Tube video in Pinboard

Viewing 9 posts - 1 through 9 (of 9 total)
  • #14669
    rachawal
    Participant

    Hello,

    I’ve just started working with the Pinboard theme, and while it is a very good theme, I find the support detail lacking in certain areas. Specifically, I am trying to embed a video into a new post – Format: Video. I have been trying to get this video to display, just like the video “demo” on the Pinboard preview at http://demo.onedesigns.com/pinboard/?p=135. I’ve been trying for hours and cannot embed the video in this theme. Can someone please list the steps involved in embedding a YouTube video into a post in the Pinboard theme?

    Kind regards,
    Rachael

    #14670
    rachawal
    Participant

    My apologies. Disregard my previous post. I have found the information I was looking for.

    Kind Regards,
    Rachael

    #15068
    element94
    Participant

    Thanks for letting us know about the solution …. πŸ™‚

    #15070
    Kashemy
    Participant

    Shouldn’t be too hard element, if it’s the way it normally goes it’s:

    Go to the youtube page and click share below the video.

    Then click embed, and copy the code you get, presto, chango, voila!
    You’ve just embedded a youtube video! πŸ˜›

    #15078
    element94
    Participant

    That’s the problem.
    The iframe gets stripped. Once I hit Save, it’s gone.

    #15110
    Kashemy
    Participant

    That’s really weird element94..

    I’ve just tried it on my own page, embedding a YT video in a post and a page, and it works like a charm..

    Are you sure you’ve put it on Text and not Visual when you’ve posted the embedding code in the post?

    #15116
    element94
    Participant

    Yes.
    Tried this :

    As soon as I hit Update, it’s gone from the text area.

    #15215
    element94
    Participant

    Anyone ?

    #21355
    BostonMYP
    Participant

    Hello,

    I’m having a hard time uploading YouTube videos to my site. Once I upload more than one they are attached to each other with no space in between. I tried using the below code but nothing works. I am no coder by any stretch of the imagination. Any help would be greatly appreciated.

    $(function() {

    var $allVideos = $(“iframe[src^=’//player.vimeo.com’], iframe[src^=’//www.youtube.com’], object, embed”),
    $fluidEl = $(“figure”);

    $allVideos.each(function() {

    $(this)
    // jQuery .data does not work on object/embed elements
    .attr(‘data-aspectRatio’, this.height / this.width)
    .removeAttr(‘height’)
    .removeAttr(‘width’);

    });

    $(window).resize(function() {

    var newWidth = $fluidEl.width();
    $allVideos.each(function() {

    var $el = $(this);
    $el
    .width(newWidth)
    .height(newWidth * $el.attr(‘data-aspectRatio’));

    });

    }).resize();

    });

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

Tagged: , ,

You must be logged in to reply to this topic.