Code-Snippets-Functions/Execute a function on a child site/WooCommerce/disable-data-scr-attribute-product-images.txt
2023-05-15 10:55:38 -06:00

5 lines
234 B
Text

add_filter( 'woocommerce_single_product_image_thumbnail_html', 'disable_data_src_loading', 10, 2 );
function disable_data_src_loading( $html, $attachment_id ) {
$html = str_replace( 'data-src', 'src', $html );
return $html;
}