Home › Forums › Basel support forum › How to create a class to disable "basel-lazy-load" › Reply To: How to create a class to disable "basel-lazy-load"
July 16, 2020 at 1:08 pm
#211679
Artem Temos
Keymaster
Sorry, the code for Basel will look like that
add_action(
'basel_after_body_open',
function() {
basel_lazy_loading_deinit( true );
}
);
add_action(
'basel_after_header',
function() {
basel_lazy_loading_init();
}
);