Hi, please check the private content area 🙂
This topic has 5 replies, 2 voices, and was last updated 4 hours, 59 minutes ago ago by Luca Rossi
Hi, please check the private content area 🙂
.
2)
(read first message of this topic)
Logins in private content area !
Hi @Jamall,
Those loading icons are called Ajaxify feature from XStore theme. To completely disable this feature, please add the following code under functions.php file locates in your child theme:
add_filter('etheme_ajaxify_elementor_widget', '__return_false');
add_filter('etheme_ajaxify_lazyload_widget', '__return_false');
add_filter('etheme_ajaxify_script', '__return_false');
Then add the following CSS codes under XStore > Theme Options > Theme Custom CSS > Global CSS:
/* Ajaxify Animation */
body.elementor-default:not([data-elementor-device-mode]) [class*=elementor-widget-et-]>.elementor-widget-container,
body.elementor-default:not([data-elementor-device-mode]) [class*=elementor-widget-etheme]>.elementor-widget-container,
body.elementor-default:not([data-elementor-device-mode]) [class*=elementor-widget-woocommerce-etheme]>.elementor-widget-container,
body.elementor-default:not([data-elementor-device-mode]) [class*=elementor-widget-woocommerce-product-etheme]>.elementor-widget-container,
body.elementor-page:not([data-elementor-device-mode]) [class*=elementor-widget-et-]>.elementor-widget-container,
body.elementor-page:not([data-elementor-device-mode]) [class*=elementor-widget-etheme]>.elementor-widget-container,
body.elementor-page:not([data-elementor-device-mode]) [class*=elementor-widget-woocommerce-etheme]>.elementor-widget-container,
body.elementor-page:not([data-elementor-device-mode]) [class*=elementor-widget-woocommerce-product-etheme]>.elementor-widget-container {
opacity: 1 !important;
visibility: visible !important;
}
body.elementor-default:not([data-elementor-device-mode]) [class*=elementor-widget-et-]:before,
body.elementor-default:not([data-elementor-device-mode]) [class*=elementor-widget-etheme]:before,
body.elementor-page:not([data-elementor-device-mode]) [class*=elementor-widget-et-]:before,
body.elementor-page:not([data-elementor-device-mode]) [class*=elementor-widget-etheme]:before {
display: none !important;
}
/* Ajaxify Aniamtion */
Hope it helps!
You must be logged in to reply to this topic.Log in/Sign up