Jump to content

Remove product image element from default theme


Recommended Posts

Hi, sorry if this is in the wrong place.

 

My store sells spare parts for power tools so it's not necessary or feasible to have individual images for each product.

 

I'd really appreciate some advice on how to modify the default theme so that products are displayed without images. This older thread explains how to do it but the code snippets provided are based on an older version of the theme/Prestashop. 

 

Let me know if you need more information

Link to comment
Share on other sites

open themes/default-bootstrap/css/product.css

 

and add on the end this code

/* edited to do not display image block */
div.pb-left-column.col-xs-12.col-sm-4.col-md-5 {
width: 100%;
}
div#image-block {
display: none !important;
}
div#views_block {
display: none !important;
}

or upload the product.css below

 

product.css

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...