Home › Forums › WoodMart support forum › Urgent: Product Videos Not Loading – Immediate Assistance Required › Reply To: Urgent: Product Videos Not Loading – Immediate Assistance Required
June 4, 2024 at 11:57 am
#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