Home › Forums › WoodMart support forum › How to disable lazy loading on the category icons? › Reply To: How to disable lazy loading on the category icons?
November 8, 2021 at 9:54 am
#330171
Elise Noromit
Member
Hello,
Please add this code to the functions.php of the child theme.
add_action(
'woodmart_after_header',
function() {
woodmart_lazy_loading_deinit( true );
},
9
);
add_action(
'woodmart_after_header',
function() {
woodmart_lazy_loading_init();
},
11
);
Best Regards