Home › Forums › WoodMart support forum › I did not find anywhere Custom off-canvas sidebar elementor tutorial › Reply To: I did not find anywhere Custom off-canvas sidebar elementor tutorial
Aizaz Imtiaz Awan
Hello,
In fact, this feature allows web browsers to choose the best version of an image depending on the screen size, resolution, and other factors. This helps optimize page loading and improve performance on various devices. It is used on many websites, including Amazon, as we can see in the video: https://monosnap.com/file/HH3lUf8xpfjcsL1TIT26LMSjshxpTj, where two identical images with different names and sizes are loaded.
However, if you don’t need this, you can disable it by adding the following custom code to the child theme funtcion.php file.
add_filter('max_srcset_image_width', function () {
return 1;
});
Best Regards.