I would like to remove the title of the product and the price of it. I would just like it to show the product photo. How do I do this?
hi @tuckermalmquist can you please share the Store URL to give you the exact solution!
Regards
Ecommpremium
Hi go to theme.scss.liquid file and paste this code at the bottom let me know if this works for you.
.grid-product__price .grid-product__title .long-dash {
display:none !important;
}
pasted it at the bottom and still did not work.
@tuckermalmquist Please try this if still doesn’t work I will look deeply into thi
Regards
.grid-product__price.grid-product__title.long-dash {
display:none !important;
}
Or try this @tuckermalmquist
.grid-product__price{
display:none !important}
.grid-product__title{
display:none !important
}
.long-dash {
display:none !important;
}
that did it thank you