Hi,
We answer the topics by the oldest one, when you add replies it goes to the top of the list so we take longer to see it.
Add the code below to your custom css option to hide the Sku and Leave Feedback
.summary .product_meta {
display: none;
}
Add the code below to the functions.php to disable the Additional Information section.
add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 98 );
function woo_remove_product_tabs( $tabs ) {
unset( $tabs['additional_information'] );
return $tabs;
}
Regarding the mobile issue I tested with and Android and all the images loaded. Can you take a screenshot of that error?
Thanks
-Rui