Home Forums WoodMart support forum Urgent: Product Videos Not Loading – Immediate Assistance Required Reply To: Urgent: Product Videos Not Loading – Immediate Assistance Required

#570489

Luke Nielsen
Keymaster

Hello,

Add the code below into the “On document ready” area in Theme Settings -> Custom JS.

if ( document.querySelector('.woocommerce-product-gallery .wd-carousel-item.wd-with-video') ) {
		const tag = document.createElement( 'script' );
		tag.src = '//www.youtube.com/iframe_api';

		const firstScriptTag = document.getElementsByTagName( 'script' )[0];
		firstScriptTag.parentNode.insertBefore( tag, firstScriptTag );
}

Clear the cache and recheck the issue.

Kind Regards