This topic has 4 replies, 3 voices, and was last updated 1 minutes ago ago by Luca Rossi
Hi, I hope you’re doing well. Currently, both the theme’s Swiper and Elementor’s Swiper are active.
Is it necessary for both to be active?
Hello, MAHDAR,
Thank you for reaching out to us.
You can disable theme Swiper JS via Theme Options > Speed Optimization.
Best regards,
8Theme’s Team
Hi, thank you for the guidance. I disabled it, but it still loads.
I also cleared the plugin cache and Cloudflare cache.
Hi @MAHDAR,
Please add the following code under functions.php file locates in your child theme:
add_action( 'wp_enqueue_scripts', 'm2t_enqueue_page_css_files', 99999 );
function m2t_enqueue_page_css_files() {
wp_dequeue_script( 'et_swiper-slider' );
}
Hope it helps!
You must be logged in to reply to this topic.Log in/Sign up