Home Forums WoodMart support forum How to disable lazy loading for custom cart icon? Reply To: How to disable lazy loading for custom cart icon?

#392012

Artem Temos
Keymaster

Hello,

Try to use the following code for the whole header part. It can’t be applied for this specific element, unfortunately.

add_action(
	'woodmart_after_body_open',
	function() {
		woodmart_lazy_loading_deinit( true );
	},
	1
);

add_action(
	'woodmart_after_header',
	function() {
		woodmart_lazy_loading_init();
	},
	11
);

Kind Regards