Adding Video to Product Page

I need to add some short videos to select products in our store catalog. I would like to have the video for the product exist as a poplet. I have tried to simple ad the video(hosted on our BC site) to the poplet section of the product. This didn't work, I didn't  really expect it would be that simple. Any ideas on how I could achieve this? 

Embed the video it in the description section.

Similar Messages

  • Adding facebook comments to large product page

    hi guys I just wanted to go over the facebook intergration process *** ive read this http://kb.worldsecuresystems.com/kb/add-social-media.html
    but couldnt find the container.html page in admin, only dreamweaver.
    plus when ive checked out the forums on intergrating facebook comments there seems a work around because the current module doesnt work the way people want it. to.
    Is this still the case or should I go about intergrating facebook as described http://kb.worldsecuresystems.com/kb/add-social-media.html
    What I want to do is use it on this site on the large product section instead of the comments module ive inserted
    http://www.ceramicplanet.co.uk/bathroom-tiles/relief-white-5445-25x33cm
    would adding the script to the large product template manually work better than adding it to the facebook container.html page in the social modules folder?
    plus I got the impression peeps had trouble having the comments for that one item showing just on its own page. I want just comments for the product on show appearing on that product page not just any old list of random comments. Is this easy to do now or is there extra url tags needed?
    any advice or help will be greatly appreciated
    Dave
    oh just to say this is the code facebook gave out when I pressed get code but Ive noticed different versions on forum pages, is it right to use this
    <div id="fb-root"></div>
    <script>(function(d, s, id) {
      var js, fjs = d.getElementsByTagName(s)[0];
      if (d.getElementById(id)) return;
      js = d.createElement(s); js.id = id;
      js.src = "//connect.facebook.net/en_GB/all.js#xfbml=1";
      fjs.parentNode.insertBefore(js, fjs);
    }(document, 'script', 'facebook-jssdk'));</script>
    <div class="fb-comments" data-href="http://example.com/comments"
    data-colorscheme="The color scheme used in the plugin" data-numposts="5"
    data-width="420"></div>

    If you just want to keep it simple, Facebook has a social widget system that works from the URL, as long as the URL stays the same the comments will he there for that product or whatever you need.
    It is very easy to implment and even has a wizard to help you config the size and look.
    https://developers.facebook.com/docs/plugins/

  • Adding MP4 video to a page created in DW CS5

    I'm adding video for the first time and my initial attempt leaves a lot to be desired. I used the Insert Plugin to add the video, which is a full HD clip of about 150MB. It opens fine in IE, although it takes it awhile to load. I don't know what plugin to specify so it'll load up in any Mozilla session? Since it will take time to load, any suggestion about adding some "progress" bar would be appreciated- I guess with the right plugin that should be included?
    The page I'm working on is here:
    http://losangelesbillsbackers.com/video
    Thanks

    The problem with plugins is not everybody has QuickTime player or browser add-ons required to play the media.  And there's little chance that visitors will download and install required apps just for your site.
    The modern approach is HTML5 <video> with MP4, OGG and WEBM files to support all modern browsers and mobile devices.
    Below is the HTML5 code:
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>HTML5 with Video</title>
    <!--help for older IE browsers-->
    <!--[if lt IE 9]>
    <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]-->
    </head>
    <style>
    video {
        max-width:100%;
        display:block;
        margin:0 auto;
    </style>
    <body>
    <h2>Use 3 File Types to support all browsers &amp; mobile devices:  MP4, WEBM and OGV.</h2>
    <h3>Online Video Converter
    http://video.online-convert.com/</h3>
    <!--begin video-->
    <video controls poster="Your_poster_image.jpg">
    <!--these are 6 sec sample videos for testing purposes. Replace sample-videos with your own files-->
    <source src="http://techslides.com/demos/sample-videos/small.webm" type="video/webm">
    <source src="http://techslides.com/demos/sample-videos/small.ogv" type="video/ogg">
    <source src="http://techslides.com/demos/sample-videos/small.mp4" type="video/mp4">
    If you're seeing this, you're using an
    outdated browser that doesn't support
    the video tag. </video>
    <!--end video-->
    </body>
    </html>
    Bigger videos take longer to load.  Consider reducing the length, height/width & frame rate to get the file size down.
    Nancy O.

  • Adding more custom tags to large product page

    Is there any way to add more custom tags past tag_custom4?

    That's not possible. Those 4 custom fields is all you can use.
    There is a keywords field which you can utilise maybe. I think the tag for
    it is .
    Cheers,
    Mario Gudelj
    www.twoblokeswithapostie.com - Talk to us before you tell your clients:
    "No, Business Catalyst can't do that."
       Adding more custom tags to large product page  created by AnneGerber<http://forums.adobe.com/people/AnneGerber>in
    eCommerce - View the full discussion<http://forums.adobe.com/message/5050617#5050617

  • Showing and hiding dropdowns on product page, based on selected values

    Hello.
    I would like my product page to show different subsequent dropdowns based on individual dropdown values.
    I've managed to achieve this via JavaScript, but I do not like how it works.
    As far as I can tell, there is no proper identifier for each individual dropdown to determine which one it is, so all I can do at the moment is to rely on their order in the DOM, which is bad and makes it difficult for me to create a solution that would work for all products.
    For instance, if the following is a single attribute:
    <div class="catProductAttributeGroup" style="display: none;"><div class="catProdAttributeTitle">Metallic Foiling</div><div class="catProdAttributeItem"><select><option value="">-- Please select --</option><option value="6051720">Not required </option><option value="6051721">Foil ONE side + £45</option><option value="6051722">Foiling BOTH sides + £75</option></select></div></div>
    I would like the outer-most div to have some sort of html attribute that holds the product attribute id. Something like, data-attribute-id="XXXXXXX". Is that possible?
    Here's what I have up to this point:
    I use {tag_attributes_json}, {tag_product_json} and {tag_currency} to get these values into javascript on page load, so I can use them later.
    Then, I hook to change events of the drodpowns I have and then toggle their visibility based on which ones are selected. I rely on the jequery ':eq(n)' selector to achieve this, which I do not like. Is there an option for the {tag_attributes} helper which would make it add some extra information (such as attribute ID on the dropdown) on the generated HTML?
    All of this works initially, but If I then 'Add to cart', the product element get's ajax-reloaded and the events are suddenly unhooked, so it doesn't work anymore. For that one, there are two options:
    1. I could hook to an event that triggers once the product has been added to cart and the page is ready again. Is there such an event?
    2. I could implement my own add to cart using bcInternals.shop.addToCart. I tried doing this, but I have two problems with it.
    a. addToCart seems to add my selection twice, for some reason. Any ideas what I might be doing wrong?
    b. the cart info in  the top right corner doesn't refresh. it seems it tries to refresh, but there's some sort of access error in the script. This part is not yet fully added to the page, but there's a function that would do the adding to cart at the bottom of the bigger script block. Am I using the built in addToCart function incorrectly?
    This is the page I have the partially implemented functionality added on:
    Matt Laminated Business Cards
    The scripts are currently embedded inside the HTML. Once I have it properly implemented, I'd like to extract it into a separate file. Search for "$productAttributesElement" to find the block with the functionality and for "productInfo" to find the part where I store the product data with the _json tags.

    Hi,
    No worries, Didnt know if you solved or the answer wasnt helpfull
    You need to trigger you script within the product details template layout, or you could add a listener to the product container and trigger the script if any changes are detected.
    Regards

  • How do I add video to a Pages for iOS document?

    I thought that with the latest updates to Pages that there would be 1:1 parity between the MacOS X and iOS versions of  Pages.  However, I am unable to figure out how to add video to Pages in iOS as I can easily do in Pages for MacOS X (just drag & drop).  What is the secret to including video into a Pages for iOS document? Or is this just not possible?  I don't see how audio can be added either.  It seems to be Photos only from the + icon.

    The video should be in your camera roll, tap the +, then the music note and choose your video.

  • Removing scroll bar from product pages

    I need to remove the scroll bar that appears on the product pages. It doesn't matter if I have only one product or 100 on the page with the small images, I still get a scroll bar on the right side. I've tried adding and removing margins and padding, set the container height to auto, and removed the previous and next buttons from the shop templates, all to no avail. It appears to be caused by the table that holds the products, but no change to the code fixes it.
    I have included a screen print of the top of the page showing the scroll bar. There are only 3 images on this page and plenty of room below them. Overflow has been set to auto (and/or visible) on the container, the table, and the page.
    So, can anyone tell me how to shut off that scroll bar? I can't find that code that includes it so I can't see what's going on.
    Thank you for you help.
    Sincerely,
    Ahurani

    Liam,
    Thank you for answering.
    I didn't want to turn the scroll bar on the page off, but the scroll bar that appears in a div container. I finally solved the problem by turning overflow: auto to overflow: hidden. And smacked myself in the forehead and said, "Duh. I knew that." Too tired and too close to the problem I guess.
    The only other thing I can't seem to find is the large space that appears above a product table. I've tried everything from margins to padding and beyond.
    Sorry about not including the url. I have used the forum so rarely that I didn't think of that. It is www.whimsicalley02.businesscatalyst.com, just in cases you want to look at the big space on Harry Potter > Accessories and on the large product page. I'd love to tuck the product closer to the breadcrumb, but if that is not possible, then c'est la vie.
    Thank you.

  • Insert several videos in a Pages file

    We have recently created a complex book in iBooks Author and as it was very interesting we wanted to make it available too in iPhone so we prepared a simpler version using Pages instead of Author.
    The problem was that we inserted several videos on a Pages file in order to upload a book visible on iPhone.
    When we send it to our iPhone we saw all videos were the same, and it was the first one we inserted.
    Trying to solve this problem, we decompressed epub file, looked into /OPS folder and we saw all <video src codes included the same video. It seems Pages rasterized each video under a new one and gives it the name of the book we defined in Pages.
    We saw all videos inserted in the book were all the same.
    Then we edited (with Dreamweaver) xhtml files and changed manually the name of the video in <video src codes and also added all m4v videos needed into /OPS folder. Also we added new elements into opf file.
    We recompress all folders into a zip file, rename it to epub and send to iPhone via Proofer and it worked fine and we saw all 8 videos correctly
    However, when we tried tu upload to Apple Store by means of iTunes Producer (last version) we get this error:
    1 package(s) were not uploaded because they had problems:
              /Users/un/Music/iTunes Producer/Playlists/Vernacle_iPhone.itmsp - Error Messages:
                       Apple's web service operation was not successful
                       Unable to authenticate the package: Vernacle_iPhone.itmsp
                       ERROR ITMS-9000: "Unable to parse opf file: container.xml" at Book (MZItmspBookPackage)
    Any ideas?
    PS as a reference, the same book in iBooks Author worked fine with each video correctly placed.

    When you post code, please use[code] and [/code] tags as described in Formatting tips on the message entry page. It makes it much easier to read.
    I'm confused, you are returning a GIF, not a PDF in the code below, but you are telling the client you are returning a JPEG.
    Graphics2D.drawImage
    ImageIO.read

  • Adding videos to adobe muse

    I need help in adding videos to adobe muse. I don't want to use video.js becasue its complicated for me. I would like to add an html video. somehting very simple please. I am new to this so be very specific please

    If you attempt to use the embed code from YouTube, the likely result will be a crash in Muse.
    Google made a change to their video player recently that's exposed a crashing bug within Muse. While we work on a robust long-term fix, we've released an alternative YouTube widget on the Muse Exchange <http://muse.adobe.com/exchange-library/youtube-widget-without-poster>. You can double click on the .mulib file to add it to your Library panel. From there you can drag-n-drop the widget onto your page and enter the ID for your YouTube video and select the widget options. This updated widget shows just a static "YouTube" graphic in Muse Design view and the built-in Muse Preview, but works as expected in Preview in Browser or when pushed live.
    Sorry for the inconvenience.

  • Adobe Acrobat Pro crashing after adding video

    Why is my Adobe Acrobat Pro crashing after adding video? It added video fine just weeks ago but now has crashed 11 times while trying to add video. I've tried to add video to a 30 page presentation, a 40 page presentation and a one page test presentation...all crash after adding video. Please help.

    http://helpx.adobe.com/acrobat/kb/acrobat-downloads.html

  • Return to products page after Add to Cart

    hi,
    is it possible to return the the current catalog products page after the user presses Add to Cart?
    thanks in advance.
    Frank.

    thanks.
    had i think about it and what i really need is for the javascript to be refreshed on the Large Product page after clicking Add to Cart.
    Frank.
    edit: i searched the forum and found this:
    <script type="text/javascript">
    function AddProductExtras(){
    document.location.reload(true);
    </script>
    and also tried to refresh the js using this:
    <script type="text/javascript">
    function AddProductExtras(){
    javascript:location.reload(true);
    </script>
    but both get rid of the "items added to cart" message and both reload the whole page which looks and feels rubbish!
    i've decided to go to the shop cart using tag_buynow and added a continue shopping button using {module_goback,image}.
    it's not the way i wanted the site to work but it's better than having clunky reloads and js not working.

  • My Lightroom 5 upgrade serial number not showing up on My Products page; chat support useless

    I purchased a Lightroom 5 upgrade license on July 25th.  I didn't receive a confirmation email but my serial number was displayed on the order summary page after purchase.  I tried registering the serial number repeatedly through the My Products page but for some reason the serial number wasn't showing up, even though the registration process reported a successful result.  Furthermore, Adobe products bought from the Adobe store should automatically be registered according to Adobe's web site.  Apparently this must have failed.  I need to reinstall Lightroom 5 but the serial number is still not showing up on the My Products page.  I just spent an extremely frustrating hour with Adobe "Live" chat who did nothing but send me in circles and repeat the same canned responses over and over again.
    I'm currently on hold with "phone support" but I'm not optimistic as I've been on hold for 28 minutes.  The only other support option was a link to this forum, hence this post.  Hopefully someone from Adobe can retrieve my serial number and contact me.  Failing this my only other option will be to contact VISA and open a claim.
    My comical-if-it-weren't-so-sad conversation with Adobe support:
    Hi, there are 36 customer(s) in line ahead of you. We'll be with you as soon as possible. Thank you for your patience.
    Hi, there are 35 customer(s) in line ahead of you. We'll be with you as soon as possible. Thank you for your patience.
    Hi, there are 31 customer(s) in line ahead of you. We'll be with you as soon as possible. Thank you for your patience.
    You are now chatting with Bhagawan.
    Bhagawan: Hello! Welcome to Adobe Customer Service.
    Joel: Hello
    Bhagawan: Hi Joel.
    Joel: I need to reinstall Lightroom 5 but my serial number is not showing up under My Products & Services on the website
    Joel: I bought a Lightroom 5 upgrade back in July
    Bhagawan: I will be glad to check and help you with this issue.
    Joel: For some reason the product registration is not showing up under my account. I have my VISA transaction info if it helps you find my purchase.
    Joel: Thanks
    Bhagawan: I'll be right with you.
    Joel: ok
    Bhagawan: Okay.
    Bhagawan: May I know the email address, please?
    Joel: ******
    Bhagawan: Thank you.
    Bhagawan: Let me check on this.
    Bhagawan: For security reasons, could you verify your complete name and billing address as mentioned on your account please?
    Joel: Sure:
    Joel: Joel ****
    Joel: **********
    Bhagawan: Thank you Joel.
    Bhagawan: Joel, I see that your serial number is registered under your adobe account, please sign out and sign in your adobe account click on My Products and service information to retrieve the serial number.
    Joel: I only see Lightroom 4 ... not Lightroom 5.
    Joel: But I'll try
    Joel: Give me a sec
    Bhagawan: Sure.
    Joel: Nope...still only shows Lightroom 4
    Joel: Products in use Version Platform Registration date Lightroom 4 Mul October 4, 2012 Register new products
    Bhagawan: Okay.
    Joel: Not sure why it isn't showing my upgraded license for Lightroom 5
    Bhagawan: Please give me a minute or two.
    Joel: ok
    Bhagawan: Sure.
    Bhagawan: Thanks for staying online.
    Joel: np
    Bhagawan: Joel, In this case, I'll transfer this chat to our Concern Team to check and help you with the serial number.
    Joel: ok
    Bhagawan: Please stay online.
    Joel: ok
    Please wait while I transfer the chat to the appropriate group.
    You are now chatting with Naveen R.
    Naveen R: Sorry for the wait. Please do stay online.
    Naveen R: Hello! Welcome to Adobe Customer Service.
    Joel: ok
    Joel: Hello
    Naveen R: Hi Joel.
    Naveen R: I understand that you are unable to locate the serial number.
    Joel: I purchased Lightroom 5 on July 25, 2013 as an upgrade for Lightroom 4. I need to reinstall Lightroom 5, but my serial number is not showing up in the products & services page.
    Joel: I looked through my email receipts and couldn't find an order confirmation (or anything from Adobe related to my recent purchase.) After purchasing the upgrade, the serial number was displayed and I thought I had registered it using the Adobe account portal
    Joel: Apparently, this didn't work. I have my VISA transaction information if required.
    Naveen R: Thank you for the information.
    Naveen R: I will be glad to check and help you with that.
    Joel: Thanks
    Joel: As I mentioned to the previous agent, when I got into My Products on the Adobe portal, I can see my Lightroom 4 info, but the Lightroom 5 Upgrade info isn't there.
    Joel: got = go
    Joel: sry
    Naveen R: Thank you for waiting. One moment please.
    Joel: ok
    Naveen R: I'll be right with you.
    Naveen R: Sorry for the wait. Please do stay online.
    Joel: ok
    Naveen R: Thank you for waiting. One moment please.
    Naveen R: Sorry for the wait. Please do stay online.
    Joel: Will it take much longer?
    Naveen R: Let me check on that.
    Joel: Are you alive?
    Naveen R: I'm sorry due to application error I'm unable to check on that.
    Joel: Can I please get a phone number to call? My only other choice would be to open a claim with VISA for fraud since Adobe seems unwilling to help in this matter
    Naveen R: I will provide the steps to locate the serial number on your Adobe account.
    Joel: I already know how to look for a serial number. The problem is that it doesn't show up in the Adobe account portal.
    Naveen R: Please login under a different browser.
    Joel: Already tried. Used IE then Chrome
    Naveen R: Delete the cookies refresh your browser.
    Joel: Same problem
    Joel: Please provide me with a number to call
    Naveen R: *Once you login to the Adobe account, click on "My products" under the "My products and services".
    Naveen R: *There you can locate the serial number which you have registered.
    Joel: I've already done that.
    Joel: It is NOT listed
    Joel: Which I've been saying for the past 40+ minutes
    Naveen R: May I know the email address you logged into Adobe account?
    Joel: ******
    Naveen R: Thank you.
    Joel: ...
    Naveen R: Thank you for waiting. One moment please.
    Naveen R: I see that your serial number is registered under your account.
    Joel: Lightroom 5
    Naveen R: I will provide you the serial number via email after ending this chat.
    Joel: ok but please make sure it isn't Lightroom 4 but my Lightroom 5 serial number
    Naveen R: Yes. Due to some technical error you are unable to locate it.
    Joel: ok please send the serial number
    Naveen R: Sure.
    Naveen R: Is there anything else I can help you with?
    Joel: No
    Naveen R: You are welcome.
    Naveen R: Thank you for contacting Adobe. We are available 7 days a week, 24 hours a day. Goodbye!
    This chat session has ended.
    Thank you for contacting Adobe.

    OK, I was able to recover my previous system's image and thankfully it appears you can get the serial number from Help->System Info.  I attempted to register the serial number again via the My Products page and while it indicated that the registration was successful, we'll see.  At least I should be able to install LR5 on my new machine now.
    Edit:  I also just discovered that the serial number is listed under My Orders, but not under My Products.  Weird.  In my defence , I never thought to check My Order history because I never received a confirmation email and the order wasn't listed after purchase...even as late as mid-August (when I last checked.)  Very strange but it's all good now.
    Edit #2: OK now I just feel silly.  I just received an email from Naveen with an actual support case AND the correct serial number.  So, I stand corrected.  The Live Chat process still felt incredibly long with some seemingly canned/automated responses but, in all fairness, he did get back to me.  Thank goodness I washed both feet today...

  • HELP --- Error while adding Portlets to the Page. (WWC-44012)

    Hi all,
    I have a pl/sql portlet. It compiles fine and shows up perfectly in portlet repository. But when i add this to the page, I get following error
    Error while adding Portlets to the Page. (WWC-44012)
    An unexpected error occurred: User-Defined Exception (WWC-43000)
    An unexpected error occurred: User-Defined Exception (WWC-43000)
    An unexpected error occurred: User-Defined Exception (WWC-51004)
    (WWC-00000)
    I checked the portlet specification file (.pks) and body file (.pkb) for any mistakes but they seems fine.
    Does anyone know what can cause this error?
    Any pointers in this regards will be highly appreciated.
    Thanks!!!
    Rajesh

    Rajesh,
    Could you provide some more details about your code? I will try to look into possible causes of the error. One thing you may try is subscribing to the Knowledge Exchange on http://portalcenter.oracle.com. Then you could post your code in your community folder and everyone would be able to test it out.
    Of course, this means you must be willing to share your code with everyone.
    James

  • Photoshop Product page doesn't load with IE, FF or Chrome

    So I order and pay for Photoshop CC. Get the email telling me how to Get Started. Get to the Download Center webpage, login, and
    - Internet Explorer takes me to a blank page https://creative.adobe.com/products
    - Chrome takes me to the product page. I click on Photoshop and I'm taken to an almost blank page https://creative.adobe.com/products/photoshop The only thing on this page are 3 links at the top of the page; Home, Download Center, Learn
    - Firefox does the same as Chrome.
    I'm going to _guess_ the Adobe website doesn't like one or more of my browser extensions. Please tell me I won't have to uninstall / disable extensions one at a time and try again and again to download PS CC.

    you can download directly.
    if you follow all 7 steps (especially steps 1,2 and 3), you can download here: http://prodesigntools.com/adobe-cc-direct-download-links.html
    and activate with your adobe id.
    if you have a problem (error message, unavailable page or you are offered a current adobe version), you did NOT follow the directions.
    the most common problem is failing to meticulously follow directions 1,2 and/or 3 which are needed to add an adobe.com cookie to your computer that allows you to download directly without using the akamai download manager.
    again, follow the directions and you'll have no problem.

  • Adding videos without iTunes!

    I have a 30GB iPod and I want link from where I can download a software that can be used for adding videos in iPod without iTunes.
    I need that software because whenever I try to add videos to my iPod using iTunes, it displays the error like this:-
    " iTunes has encountered a problem and needs to be closed.We are sorry for inconvenience."
    So, please send me any link from where I can download such software free!
    Thank You.

    Same Here.
    iTunes doesn't work for me, I need software that will allow me to sync Videos DIRECTLY to my iPod.

Maybe you are looking for

  • Oracle 10g Express Edition XE

    i have windows 7 and 64 bit OS. i am install the oracleXE .it was successfull but i cannt access database home page but i am connect using SQL command Line.How to access the database home page

  • Satellite L350 and OpenGL 1.4

    I have seen similar posts in the past, but none of them could help me with my issue. Background, I have a Satellite L350 with Windows Vista and try to run a game that needs OpenGL 1.4. I already installed the current display drivers from this site bu

  • Prepayment exceeded invoice amount, a refund is received. How 2 handle this

    I made a prepayment of $100 to a vendor. The invoice I later received from the vendor was $70. The vendor then sent me a refund for the difference between the prepayment amount and the invoice amount (that is $30). 1) How can I treat this refund from

  • YouTube constantly restarting in full screen mode.

    I am having an issue with YouTube constantly stopping and restarting when in full screen mode.  Using Safari and whatever I am watching only runs for a few seconds before restarting.

  • Reg: Guidance

    Hello, I am beginner of oracle sql and plsql. I am searching job in related this technology. Please anyone can guide me and tell me how to get a job in these technology. Thank you.