elementor / elementor

The most advanced frontend drag & drop page builder. Create high-end, pixel perfect websites at record speeds. Any theme, any page, any design.

Home Page:https://elementor.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to update slick js?

stratboy opened this issue · comments

Hi, I see that elementor is currently shipped with Slick js v1.6.0, which is an old one. For other things and full mobile support, I need latest 1.8.0. I'd like not to load it twice, though. Which is the best practice for override/upgrade js dependencies?

Thank you

add_action('elementor/frontend/after_register_scripts', function() {
  wp_deregister_script('jquery-slick');
  wp_register_script('jquery-slick',get_stylesheet_directory_uri() . '/bower_components/slick-carousel/slick/slick.min.js',['jquery',],'1.8.0',true);
},15);

Probably..

Thanks

Mmmm I still have some doubts. When is Slick loaded in frontend?

If I just log console.log('Slick') I get undefined.

Is it always loaded or only if required by in page widgets?