jQuery(document).ready(function($) { // Wait for Elementor carousel to initialize setTimeout(function() { $('.elementor-testimonial-carousel .swiper-wrapper').each(function() { var slides = $(this).children('.swiper-slide'); // Shuffle the slides slides.sort(function() { return Math.random() - 0.5; }); $(this).append(slides); // Re-initialize swiper var swiperInstance = $(this).closest('.swiper-container')[0].swiper; if (swiperInstance) { swiperInstance.update(); } }); }, 500); });
Skip to content