Hello, I reviewed your theme, they have some custom optimization in the theme that conflicts with the plugin. Unfortunately I won’t be able to help you much, I can provide you with custom code that should render the video and not spoil things from your theme. You can put this code in your function.php file
function add_custom_footer_script_for_combinate_theme_with_VWG() {
if (is_product()) {
?>
<script type="text/javascript">
jQuery(document).ready(function($) {
setTimeout(function() {
jQuery('.vwg_video_js').each(function() {
var remove_lazy_video = jQuery(this).closest('.tf_lazy.tf_vd_lazy.tf_w.tf_rel.tf_box.tf_rel.tf_overflow')
remove_lazy_video.removeClass();
});
}, 500);
setInterval(function () {
jQuery('.vwg_video_js div.tf_vd_lazy.tf_w.tf_h.tf_box.tf_rel.tf_overflow').removeClass()
jQuery('.vwg_video_js .tf_vd_root').remove()
jQuery('.vwg_video_js').attr('preload', 'auto')
jQuery('.vwg_video_js video').attr('preload', 'auto')
jQuery('.vwg_video_js').attr('autoplay', 'true').removeAttr('data-autoplay');
jQuery('.vwg_video_js video').attr('autoplay', 'true').removeAttr('data-autoplay');
}, 500);
});
</script>
<style>
.vjs-control-bar { opacity: 1; z-index: 999; }
</style>
<?php
}
}
add_action('wp_footer', 'add_custom_footer_script_for_combinate_theme_with_VWG');
Please give me feedback if this helped you