Product image gallery not working
-
Hello,
I have an issue with the image product gallery. Since I installed the theme, with the dummy content or new products, with all the plugins active or deactivated only the main product image is visible. In the product thumbnails during mouse-over the second image is visible but in the product image it is not. Please watch the video I have attached for clarification.
Attachments:
You must be
logged in to view attached files.
Hello,
Add the code below into the fucntions.php file in your child theme:
if ( ! function_exists( 'xts_disable_elementor_swiper' ) ) {
function xts_disable_elementor_swiper() {
wp_dequeue_script( 'swiper' );
wp_deregister_script( 'swiper' );
}
add_action( 'wp_enqueue_scripts', 'xts_disable_elementor_swiper', 20 );
}
Kind Regards