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

Re: How to remove price from featured collections in Dawn?

Solved

How to remove price from featured collections in Dawn?

GG9
Explorer
62 1 12

How do I remove the price tag from featured collections only in Dawn? 

 

I was able to remove all price tags from collections etc. by using

.collection .card-information .price{
	display: none !important;
}

 

But I'd like to only remove the price tags from featured collections. Is that possible?

 

URL to my site: https://lhrn4x5dc5v6xk9n-57645498523.shopifypreview.com

Accepted Solution (1)

oscprofessional
Shopify Partner
16407 2444 3196

This is an accepted solution.

@GG9 ,

 

.section-template--15393943060635__featured_collection-padding .card-information {
    display: none;
}

 

Add this css at the bottom of Online Store->Theme->Edit code->Assets->owl.theme.default.scss.liquid

Hire us | Pass Core Web Vital | B2B Wholesale Experts | Claim Your Free Website Review |
Connect with Us: WhatsApp | Skype: oscprofessionals-87 | Email: pallavi@oscprofessionals.com |
Custom Shopify SolutionsPrivate Apps, Theme Customization & SEO | Digital Marketing |
OSCP Apps: Discount Suite | Wholesale App | Bundle & Upsell | Shipping Discount | and more...

View solution in original post

Replies 4 (4)

oscprofessional
Shopify Partner
16407 2444 3196

This is an accepted solution.

@GG9 ,

 

.section-template--15393943060635__featured_collection-padding .card-information {
    display: none;
}

 

Add this css at the bottom of Online Store->Theme->Edit code->Assets->owl.theme.default.scss.liquid

Hire us | Pass Core Web Vital | B2B Wholesale Experts | Claim Your Free Website Review |
Connect with Us: WhatsApp | Skype: oscprofessionals-87 | Email: pallavi@oscprofessionals.com |
Custom Shopify SolutionsPrivate Apps, Theme Customization & SEO | Digital Marketing |
OSCP Apps: Discount Suite | Wholesale App | Bundle & Upsell | Shipping Discount | and more...

infoatcodelab7
Shopify Partner
593 141 158

@GG9 ,

Please Add this css to your CSS file

.section-template--15393943060635__featured_collection-padding .card-information {
    display: none;
}
Want to modify or develop new website, Hire us.
If helpful then please Like and Accept Solution .
Email: info@codelab7.com

SagarSukhanandi
Shopify Partner
280 58 71

Happy to help you with this issue
Please follow the

.section-template--15393943060635__featured_collection-padding .card-information {
    display: none;
}

below steps

  • Step 1: Go to your Themes page. Navigate to Online Store > Themes. ...
  • Step 2: Click Edit code. In the Actions dropdown menu, click on Edit code to get to the code editor.
  • Step 3: Find the Assets folder for CSS files and edit the base.css file.
    Add the below style to the base.css file at the end
If helpful then please Like and Accept Solution.
Want to modify or custom changes on store Hire me.
- Feel free to contact me on sagar.sukhanandi@gmail.com regarding any help
GG9
Explorer
62 1 12

Thanks everyone! This worked great. @oscprofessional @infoatcodelab7 @SagarSukhanandi