Disable the data src attribute from product gallery images in WooCommerce

Disable the data src attribute from product gallery images in WooCommerce on child sites.

Snippet Type

Execute on Child Sites

Snippet

function remove_data_src_attribute( $params, $attachment_id, $image_size, $main_image ) {    
unset( $params['data-src'] );    
return $params;
}
add_filter('woocommerce_gallery_image_html_attachment_image_params', 'remove_data_src_attribute', 10, 4 );

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.