Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Trying to figure out how to remove product name, price and sold out sticker from homepage. I would like the products to be clickable through the image.
I don’t know anything about coding, please go easy on me, thank you!
Hey @Hollywatson
Welcome to Shopify Community! Can you share your Store URL so I can have a look on it? Also, if you have password enabled then please share the password as well. Your cooperation would be greatly appreciated.
Best Regards,
Moeed
Hey @Hollywatson
Follow these Steps:
1) Go to Online Store
2) Edit Code
3) Find theme.liquid file
4) Add the following code in the bottom of the file above </body> tag
{% if template == 'index' %}
<style>
.card-information {
display: none !important;
}
.card__badge.bottom.left {
display: none !important;
}
.card__heading a {
opacity: 0 !important;
}
</style>
{% endif %}
If I managed to help you then, don't forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Thank you, this worked well! when I click on the image there is still a shadow selection from where the title used to be, is there a way to get rid of that also?
Hi @Hollywatson
Please go to your Online Store > Themes > click "..." in the current theme, open theme.liquid file, paste the code below after <head>
<style>
.card-wrapper .card__inner .card__badge,
.card-wrapper .card__content { opacity: 0; height: 1px;}
<style>
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.
Thank you so much! I’ve been trying other ways for so long, first one that worked!
Just to be nit-picky, when I click on the image there is still a shadow selection from where the title used to be, is there a way to get rid of that also?
Code updated
<style>
.card-wrapper .card__inner .card__badge,
.card-wrapper .card__content { opacity: 0; height: 0px; }
<style>
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.
This doesn’t appear to have fixed the issue 😞 any other options?
Did you try to reload your page to check? I cannot see the issue as you mentioned on my side
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.
Unfortunately it’s still happening, I have a screenshot of the issue here, sorry for the bad quality, it was hard to get a photo of so it’s a photo of my screen! This grey box is the issue, and it comes up after I click the product. Thank you so much!
Hello @Hollywatson - check the screenshot.
1) You can hide the name , price and sold out sticker by theme customization.
Go to online store ---------> themes --------------> actions ------> customization.
2) To make the products to be clickable through the images:-
This will need custom coding to be done
and i can help you in this custom coding.
If this was helpful, hit the like button and mark the job as completed.
Thanks
I only see these options under template*:
check this screenshot, from home page go to your product page, click on any product and that will take you to product page.
the do this editing.
let me know if this helped.