Hello WoodMart team,
We currently use Vimeo as the video source for the native product gallery video feature. The issue is that Vimeo has been restricting/blocking some of our videos by classifying our niche as adult content — even though there’s no nudity or pornographic content involved. Our store sells intimate wellness products, and the videos are simple product demonstration videos, just like on any other e-commerce site.
We found a video hosting platform (Panda Video, pandavideo.com.br) that accepts this type of content without that restriction. The embed URL format it provides looks like this:
[code]https://player-vz-67d2fe45-f0f.tv.pandavideo.com.br/embed/?v=d9961171-97ee-4b97-813c-4edd6604b4d4[/code]
While investigating the theme code:
[code]inc/integrations/woocommerce/modules/product-gallery-video/class-main.php[/code]
I found that video support is limited to three fixed types (mp4, youtube, vimeo), and that per-image video data is processed through a localized JSON (via the [b]woodmart_get_single_product_image_data[/b] filter) consumed by a compiled/minified front-end JS bundle — which makes it hard to hook in a fourth provider externally without modifying core theme files.
[b]My question:[/b] is there any documented filter, hook, or setting to add a custom video provider (via a generic embed URL) to the product gallery, without needing to modify theme files directly? This would be very helpful for niche stores facing this same type of content restriction on platforms like Vimeo/YouTube.
Thank you in advance for your help!