Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #854243

    In my products there is an option to add a youtube video link

    I have first tried it for this page:

    and this is were I entered the YouTube link:

    View post on imgur.com

    And this is the link I used and it works fine in YouTube

    , yet showing an error message when in where the product image is

    #854358

    Hey Nathan,

    Looks like the video is supposed to be shown instead of the featured image, please remove the image and see if the video shows up.

    How To Get WooCommerce Featured Video

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #854520

    even when I do that it’s not showing up

    #854902

    see the error message in the video?

    View post on imgur.com

    #855092

    can I please get support to fix the error?

    #855207

    Hi,

    It works fine if you remove the “t” parameter in the url.

    https://www.youtube.com/watch?v=j0gPCan_E4k
    

    Please contact the plugin author for additional help.

    Best regards,
    Ismael

    #855545

    “remove the “t” parameter in the url”

    Meaning take out the letter “t” in all the other links in the other products too?

    How do I increase the size of the video?

    Thank you for responding Ismael with solutions it’s supportive

    #855554

    how do I remove the magnifying glass icon on the video too please

    #855672

    Hi,

    Meaning take out the letter “t” in all the other links in the other products too?

    1.) It’s the parameter in the video url. This is the original youtube url.

    // https://www.youtube.com/watch?v=j0gPCan_E4k&t=26
    

    You have to remove the “time” or “t” parameter.

    // https://www.youtube.com/watch?v=j0gPCan_E4k
    

    2.) You have to increase the size of the image container in order to increase the size of the video.

    .single-product-main-image {
        width: 50%;
    }
    
    .single-product-main-image iframe {
        width: 100% !important;
    }
    
    3.) Remove the magnifying glass icon with the following css code.
    
    

    .avia-wc-30-product-gallery-lightbox {
    display: none !important;
    }`

    Best regards,
    Ismael

    #855799

    I have tried to increase size of container like you mentioned

    if it goes to 200% it pushes the calendar aside

    How do I made it around this size please
    https://i.imgur.com/w1TnBsn.jpg

    #856305

    Hi,

    The maximum width should be 100%. You can’t go above that value. Set it to 50%.

    .single-product-main-image {
        width: 50%;
    }

    Best regards,
    Ismael

Viewing 11 posts - 1 through 11 (of 11 total)
  • You must be logged in to reply to this topic.