Remove Product Image All Together?

I know that sounds strange to most, however our products don’t have images. (SEE IMAGE BELOW)

I’ve seen it done on digital product sites, but I can’t seem to figure out how to do it. Everything I find is how to hide thumbnails and such…I just don’t want any! lol

If it was possible to remove the option of images, I could then utilize that real estate by centering the buying options and descriptions in the center of the page. I have seen people suggest creating a base.css file and tried different codes…but nothing works.

We are using the “Empire Theme”.

Can anyone guide me in the right direction? Is there a script or a app I can use to do this?

Thanks everyone.

Hi, @theworldfamous

Please share the store URL so that I can assist you.

Thanks AnneLuo…the URL is www.rschealth.com

Have you fixed it? The images display.

I have not. The goal is to have images “not display” on the product page.

The screen shot just happens to show a place holder. We don’t want the image functionality at all.

I hear theres something you can add to the code, but I keep falling short of finding it.

Hi @theworldfamous

Please open Online Store > Themes > click “…” next to current theme > Edit code, open theme.liquid file, add this code after


1 Like

You can try this code by following these steps:
Step 1: Go to the online store ->Theme ->Edit Code.
Step 2: Find the theme.liquid file and add the following code above the tag


Result:

Hopefully it will help you. If yes then Please don’t forget hit Like and Mark it as solution!

1 Like

If you mean like this

find theme.css, modify the code.

.product-gallery{
display:none;
}

.product--outer{
 display: block;
 font-size: 0;
 justify-content: center;
}

This definitely did the trick! I will be using this in combination with a code below which goes one step further with eliminating the images on the collections and galleries. Thank you so much for your help!

I tested this code and it works in combination with the one above so I am running both! Yours eliminated my next problem which was hiding the images in the collections and such. I appreciate your help so much!