What's your biggest current challenge? Have your say in Community Polls along the right column.

How To Hide The Price On Related Products Of The Theme Dawn 2.0?

Solved

How To Hide The Price On Related Products Of The Theme Dawn 2.0?

criscianfa
Tourist
4 0 2

Hi everybody,

 

I need to hide the price on the related products row of the dawn 2.0 theme, can someone helps?

Thanks in advance

Accepted Solution (1)

Made4uo-Ribe
Shopify Partner
9159 2184 2700

This is an accepted solution.

Hi @criscianfa ,

I understand that you want to hide the prices of the related products. 

  1. From your Shopify admin dashboard, click on "Online Store" and then "Themes".
  2. Find the theme that you want to edit and click on "Actions" and then "Edit code".
  3. In the "Assets" folder, click on "theme.scss.liquid" or "styles.scss.liquid" file, depending on which file your theme uses to store its CSS styles.
  4. At the bottom of the file, add the following CSS code:
.price {
    display: none;
}

 I hope it help. 

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
Create custom Shopify pages effortlessly with PageFly's drag-and-drop ⚙️.

View solution in original post

Replies 9 (9)

PageFly-Victor
Shopify Partner
7865 1786 3120

Hi @criscianfa ,

Could you please share your store URL and password (if enabled). So that we can help you. Thank you!

criscianfa
Tourist
4 0 2

Hello Victor, 

thank you very much

sure:

https://www.discovergrancanaria.net/

PageFly-Victor
Shopify Partner
7865 1786 3120

Hi @criscianfa ,

This is Victor from PageFly - Landing page builder, I’d like to suggest this idea for solution:

Step 1. Go to Online Store -> Theme -> Edit code
Step 2. Open your theme.liquid theme file
Step 3. Paste below code before </body> :

<style>
product-recommendations .card-information>.price {
    display: none;
}
</style>

Hope my answer will help you.

Best regards,

Victor | PageFly

criscianfa
Tourist
4 0 2

Hello Víctor, thanks but I cannot find the 

 

"theme.liquid" theme file

 

And cannot move to

Step 3. Paste below code before </body> :

 

After step 1 I find several options but not the mentioned file...

Ashu_981
Visitor
1 0 0

This worked for me! Thank you so much. 
I just pasted it in the file under section-related-products.css without the style tag.

thanks again!

Boomdeleon
New Member
12 0 0

thanks this worked

Made4uo-Ribe
Shopify Partner
9159 2184 2700

This is an accepted solution.

Hi @criscianfa ,

I understand that you want to hide the prices of the related products. 

  1. From your Shopify admin dashboard, click on "Online Store" and then "Themes".
  2. Find the theme that you want to edit and click on "Actions" and then "Edit code".
  3. In the "Assets" folder, click on "theme.scss.liquid" or "styles.scss.liquid" file, depending on which file your theme uses to store its CSS styles.
  4. At the bottom of the file, add the following CSS code:
.price {
    display: none;
}

 I hope it help. 

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
Create custom Shopify pages effortlessly with PageFly's drag-and-drop ⚙️.
criscianfa
Tourist
4 0 2

Done, thanks a lot 🙂

Boomdeleon
New Member
12 0 0

I tried it again. This worked. Thanks!