How to hide product name and price on homepage AND change font to custom font

How to hide product name and price on homepage AND change font to custom font

elll
Visitor
2 0 1

Hi,

 

I have a problem. I read so many forums here and watched some Youtube videos and tried so many solutions, but nothing worked. I picked up that every theme has different "style" of coding and that if I read that some code works for theme XYZ doesn't mean that it'll work on mine. So after so many hours I am asking for help, can someone help me hide the names and prices of products ONLY on homepage?

 

And also I have another request: I need to change font to custom font. I tried apps and coding from forums and YouTube videos and guess what, It always changed just few words. I tried to do it through CSS selectors, but that means, that I need to select almost every other word and that's my least possible way I wanna do it.

 

Please, can someone help me?

Thank you.

 

URL: https://e2459b.myshopify.com/

Replies 2 (2)

Made4uo-Ribe
Shopify Partner
8158 1962 2400

Hi @elll 

Seems like youve already change the custom font. 

Made4uoRibe_0-1726601645739.png

For hidng the price and title check this one. 

From your Shopify admin dashboard, click on "Online Store" and then "Themes"

Find the theme that you want to edit and click on "Actions" and then "Edit code".

In the "theme. Liquid" file. Find the </body> tag and paste the code below before the tag. 

 

 

{% if template.name == 'index' %}
<style>
.product-item__meta {
    display: none;
}
</style>
{% endif %}

 

 

And save. 

Result:

Made4uoRibe_1-1726601725041.png

 

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.
elll
Visitor
2 0 1

Yeah, I changed or tried to change the font but it doesn't show up on the page.