@lizzie
To change the lazy loading property in WooCommerce, you can follow these steps:
Alternatively, you can also change the lazy loading property by adding code to your theme's functions.php file. Here is an example of how you can disable lazy loading for product images:
1
|
add_filter( 'woocommerce_lazy_load_images', '__return_false' ); |
Add this code to your theme's functions.php file and save the changes. This will disable lazy loading for product images in WooCommerce.
Remember to always test your changes on a staging site before applying them to your live site.