Home Forums WoodMart support forum Split: Elementor non funzion Reply To: Split: Elementor non funzion

#532231

Artem Temos
Keymaster

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

(function($) {
	$( window ).on('elementor/frontend/init', function() {
		document.querySelector('.wd-slider .wd-carousel').addEventListener('wdSlideChange', function () {
			elementorFrontend.elements.$window.trigger('elementor/bg-video/recalc');
		});
	});
})(jQuery);