Home Forums WoodMart support forum Youtube video not loading in category description. Reply To: Youtube video not loading in category description.

#448587

Artem Temos
Keymaster

Try to add the following code snippet to the Custom JS area in Theme Settings to fix this issue.

(function($) {
	$(document).on('wdShopPageInit', function () {
		if ( 'undefined' !== typeof elementorFrontend && $('.elementor-widget-video').length ) {
			elementorFrontend.elementsHandler.runReadyTrigger($('.elementor-widget-video'));
		}
	});
})(jQuery);