Home Forums WoodMart support forum How to disable lazy loading on the category icons?

How to disable lazy loading on the category icons?

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #330029

    fineorganics
    Participant

    How to disable lazy loading on the category icons?

    #330031

    Hello,

    Lazy loading is disabled in the Theme Settings > Performance > Lazy loading. This feature is global and would be disabled for all the images.

    If you have any questions please feel free to contact us.

    Best Regards

    #330038

    fineorganics
    Participant

    I want to disable just on the category icon becouse my page forever shiftet when loading

    #330171

    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

    #330189

    fineorganics
    Participant

    Good! Could you added that to next update? I think it so need to other people

    #330218

    Hello,

    As soon as we get more requests for this feature our developers would consider adding this feature.

    If you have any questions please feel free to contact us.

    Best Regards

Viewing 6 posts - 1 through 6 (of 6 total)