I just tried 3 product pages and I can see product images on all of them. Its hard to fix something that works for me.
Try:
– Flush Litespeed Cache. If you still have the problem, deactivate until the problem is resolved.
– Dashboard > WooCommerce > Status > Tools tab & click the clear transients buttons
– you have a Javascript error in your Simple Custom CSS and JS plugin
This function:
$(document).ready(function(){
$("#wpadminbar").remove();
});
is causing an error. You can’t use the $ shorthand in WordPress because WP may have multiple Javascript frameworks, you have to use the unambiguous jQuery, so:
jQuery(document).ready(function(){
jQuery("#wpadminbar").remove();
});
Or, if this is for the front end, you can turn it off in user settings.