Hello,
Embed Videos For Product Image Gallery Using WooCommerce. Can this plug-in upload videos in bulk in product excel? What is the field name
]]>In wcevzw.front.php, on line 138, the plugin uses chevrons within the data-video tag. This breaks our site! The problem was solved when using the HTML-character-codes for the chevrons:
& # 6 0 ; and. & # 6 2 ; for < and > (without spaces, see https://www.toptal.com/designers/htmlarrows/)
Can this be solved in the next update?
]]>Hey,
In this plugins current form, it doesn’t actually update the thumbnail image with the video thumbnail or even display the play button.
A ideia é muito boa, más tem um defeito que pelo menos no meu caso n?o vai dar para usá-lo, eu utilizo o tema Electro e no celular/smartphone fica totalmente sem configura??o, deixa de ser responsivo e perde as configura??es.
]]>Followed instructions but YouTube link is broken in the product gallery.
This is the error message:
“An error occurred. Please try again later. (Playback ID: _35AYj5ws-3UPYqW)
Learn More”
Heres the link I added to the Video Link ID:
I’d really appreciate some help as otherwise the plugin looks good.
Thanks
]]>Hey there,
The ‘WooCommerce – Embed Videos To Product Image Gallery’ Plugin causes a Javascript error in the console… see
https://www.dropbox.com/s/y2s3vzkwf2dnudq/Screenshot%202017-08-18%2011.13.47.png?dl=0
https://prnt.sc/two3mp
photoswipe.js?ver=4.8.1:2 Uncaught TypeError: Cannot read property ‘style’ of undefined
at photoswipe.js?ver=4.8.1:2
at dispatch (jquery.js?ver=1.12.4:3)
at r.handle (jquery.js?ver=1.12.4:3)
Can you help us out?
Thanks
Hello, is there a way to put default image for example this so every person can choose this image and put their video link?
]]>The plugin works great, except that it stops the mobile menu working and breaks the responsiveness of the site which is using OceanWP theme.
]]>Hi
I do not want to use the woocemerce product zoom on hover and used the below code in the functions.php file which work well.
After installing the plugin which work well, it has over ridden the PHP code below
function remove_image_zoom_support() {
remove_theme_support( ‘wc-product-gallery-zoom’ );
}
add_action( ‘wp’, ‘remove_image_zoom_support’, 100 );
Hi guys,
when I activate the plugin the product page no longer works
in the server logs, I have this error:
AH01071: Got error 'PHP message: PHP Fatal error: Uncaught Error: Call to undefined function mpty()
Can I have support?
Thanks in advice.
at line 169
edit this:
$hd = ( mpty( $hd ) ) ? 0 : 1;
to this
$hd = ( empty( $hd ) ) ? 0 : 1;
Just downloaded the latest version (2.4) but I’m having an issue on the products page.
Even if I don’t assign any “video” image to a product, any product that has more than two images will automatically break.
It appears that when you select the second image, it loads that in the main image area, however it quickly reduces the height to 0px.
If you do load an image with a video URL, when you click on the image, the video flashes on the screen for a second, and then slides off to the left leaving a white/blank area.
Thoughts on the issue?
Using
WordPress – 5.2.2
Elementor – 2.9.6
Elementor Pro – 2.9.1
Astra Pro – 2.3.3
WooCommerce – 3.6.5
I see the plugin has been suspended from the repository as of March 7th 2020.
I also saw that WooCommerce themselves updated their plugin for the same features on March 10th 2020.
Of course, WooCommerce charges $49/year.
I’m sure this is pure coincidence ??
]]>I like the plugin, works just fine on the latest version of WordPress, but why in the CSS file for the plugin would you put “body {margin-top:50px;}” ??
The CSS in the plugin should have its own classes and not try to overwrite “wrapper” etc too.
At the least, the extra “body” CSS should be killed off, as now I’ve just bloated my code to remove a BODY flag from a plugin.
Other than that, plugin works without an issue.
]]>In a WP 5.3 multisite installation, activating the plugin fails. Any ideas or suggestions?
Thank you
I go into the product and try to add in bottom-right gallery in backend but see no option to add a video URL, only upload or select from current media.
]]>I got the error on page after I enabled the plugin.
jquery-3.4.1.min.js?ver=5.2.3:2
Uncaught TypeError: e.indexOf is not a function
at k.fn.init.k.fn.load (jquery-3.4.1.min.js?ver=5.2.3:2)
at (index):272
k.fn.load @ jquery-3.4.1.min.js?ver=5.2.3:2
(anonymous) @ (index):272
jquery-3.4.1.min.js?ver=5.2.3:2
Uncaught TypeError: e.indexOf is not a function
at k.fn.init.k.fn.load (jquery-3.4.1.min.js?ver=5.2.3:2)
at photoswipe.js?ver=5.2.3:1
k.fn.load @ jquery-3.4.1.min.js?ver=5.2.3:2
(anonymous) @ photoswipe.js?ver=5.2.3:1
Thank you in advance.
]]>I have faced issues on “attachment_fields_to_edit” this hook.
So can you please set the isset and !empty function on this hook functions.
]]>We have a Spanish-language site using WPML to translate from English. On the Spanish version of the pages, the video doesn’t load in the gallery – only the thumbnail.
]]>There are several issues here. The first is that the plugin does not use a template to render the thumbnail images. This means that we cannot alter the output of the gallery thumbnails. Second, and this is what is a problem for us currently, is that the hardcoded HTML in the plugin is using the fullsize image as the thumbnail, instead of “shop_thumbnail”. This causes the layout of the thumbnails to be broken and causes performance to suffer, especially if there are multiple huge images being loaded on page.
We have fixed the issue by modifying the plugin itself to use the thumbnail image correctly.
Here is the patch:
diff --git a/woocommerce-embed-videos-product-image-gallery.php b/woocommerce-embed-videos-product-image-gallery.php
index 395e9e1..d20d848 100644
--- a/woocommerce-embed-videos-product-image-gallery.php
+++ b/woocommerce-embed-videos-product-image-gallery.php
@@ -260,7 +260,10 @@ function woo_display_embed_video( $html ) {
$loop = 0;
$columns = apply_filters( 'woocommerce_product_thumbnails_columns', 3 );
foreach ( $attachment_ids as $attachment_id ) {
- $newhtml .= '<div data-thumb="'.wp_get_attachment_url( $attachment_id ).'" class="woocommerce-product-gallery__image" >';
+
+ $full_size_image = wp_get_attachment_image_src( $attachment_id, 'full' );
+ $thumbnail = wp_get_attachment_image_src( $attachment_id, 'shop_thumbnail' );
+ $newhtml .= '<div data-thumb="'.$thumbnail[0].'" class="woocommerce-product-gallery__image" >';
$classes = array( 'zoom' );
if ( $loop == 0 || $loop % $columns == 0 )
$classes[] = 'first';
]]>
For anybody who is having a problem with the plugin after they update to the latest version, try installing a previous version.
I had to go back from v2.2 to v2.0 to get it working.
A few steps:
All video ids that you previously used should still be linked to the product image, same as before. If not, go into the product gallery, check to see if the video id is there. If it is, and the videos aren’t showing on the live product page, then you may need to download an even earlier version of the plugin until it works. It took me trying two previous builds to find the version (v2.0) that worked as it did before.
]]>Self-hosted videos would be very appreciated.
Maybe a premium feature?
thank you so much
Adriano
]]>Hi,
Earlier this plugin working perfectly with my woocommerce site but all of a sudden the CSS used in this plugin overrides the site style.css which results the site design was messed up.
Can you please explain what should be the cause for this.
This issue was raised on my product single page.
as it is a live site, for now, we have removed this plugin from our site.
Please assists as quick as possible.
thanks
Hey there,
The ‘WooCommerce – Embed Videos To Product Image Gallery’ Plugin causes a Javascript error in the console… see https://www.dropbox.com/s/y2s3vzkwf2dnudq/Screenshot%202017-08-18%2011.13.47.png?dl=0
`photoswipe.js?ver=4.8.1:2 Uncaught TypeError: Cannot read property ‘style’ of undefined
at photoswipe.js?ver=4.8.1:2
at dispatch (jquery.js?ver=1.12.4:3)
at r.handle (jquery.js?ver=1.12.4:3)`
The biggest issue for us is that causes the number counters to not work within Divi… and so on the new donation pages the numbers do not show up.
Can you help us out?
Thanks
Scenario:
You have 4 image thumbnails. One of which is for a video.
[Large image shown]
[thumb 1] [thumb 2] [thumb 3 (video)] [thumb 4]
Clicking on the thumbnails changes the large image, including showing vimeo or youtube videos. That’s perfect.
Click on thumb 2 to show the large version of that thumbnail as the large image above. Works. Great.
However, now click that large image and the image that appears in the lightbox isn’t the large image, it’s always the first image in the gallery. i.e. if Image 2 is being shown and I click on it, the lightbox should show image 2 (not image 1).
The URL is correct, it appends #&gid=1&pid=2
– i.e. it should be showing the image with id 2 (pid=2) but it appears, as a guess, the custom photoswipe that you’re including with the plugin is preventing this from working as expected.
Hello, this plugin has been great since I installed it months ago. Recently, I updated to v2.2 and now the video thumbnails have large black bars across the top and bottom. Additionally, when you click the video, it plays inside the small thumbnail container and does not open in its own window as before. Thank you for your plugin.
]]>I installed this plugin but when I click Settings button in Plugin page, ” sorry you are not allowed to access this page” appears. How can it be solved?
]]>Hello,
Thank you for this plugin, it has a great concept. Unfortunately it’s not working for me. I see it was updated 3 days ago…any ideas?
I am running the latest WordPress version – 4.8, the latest WooCommerce version – 3.1.1 and PHP Version 7.0.17
I tried disabling my theme and other plugins to no avail.
I’d appreciate any help.
Thank you in advance.
Jane
]]>This version don’t work with WooCommerce 3.0
When activated the product gallery (with out videos) do not work properly.
The latest update to Version 2.0 to make the plugin compatible with WooCommerce 3.0 breaks compatibility with WooCommerce 2.6.14 and creates errors on every product page that uses it.
]]>Problem with product image gallery…
when I implement that, it doesn’t move to other images, in featured gallery as well as it breaks whole thing..
Please advise
]]>