I’m trying to remove the product image from the Featured Product section on my cart page.
Any suggestions on what code edits to make in the Spotlight theme?
Thanks in advance!
I’m trying to remove the product image from the Featured Product section on my cart page.
Any suggestions on what code edits to make in the Spotlight theme?
Thanks in advance!
Would you mind to share your Store URL website? with password if its protected. Thanks!
Sure, My store is at https://85ae6d-2.myshopify.com/
Thanks!
This is Henry from PageFly - Landing Page Builder App
You can try this code by following these steps:
Step 1: Go to Online Store->Theme->Edit code.
Step 2: Search file base.css
Step 3: Paste the below code at bottom of the file → Save
.featured-product.product.product–small.grid.grid–1-col.gradient.color-background-1.product–left.isolate.grid–2-col-tablet {
display: none !important;
}
Hope that my solution works for you.
Best regards,
Henry | PageFly
Thanks Henry! Unfortunately, that made the entirety of the Featured Product section disappear.
You can try again with this code by following these steps:
Step 1: Go to Online Store->Theme->Edit code.
Step 2: Search file theme.liquid
Step 3: paste bellow code in tag → save.
{% if template contains ‘cart’ %}
.featured-product.product.product--small.grid.grid--1-col.gradient.color-background-1.product--left.isolate.grid--2-col-tablet { display: none !important; }{% endif %}