How to add "from" in front of the price

Solved

How to add "from" in front of the price

theknottydood
Visitor
2 0 0

Hi! I am currently using the studio free theme. I was have quite a few variations set through an app, so I have one blanket price for my items. I was hoping to add "from" in front of the price when viewing the products from the collection page. But don't want it to say "from" on the product page itself or in the cart. Hope that makes sense!

 

My website is: https://theknottydood.com

 

Thank you for any help with this!

Accepted Solution (1)

B2Bridge
Excursionist
334 67 82

This is an accepted solution.

Hi @theknottydood, you can follow these steps:

Step 1: Open Online Store -> Themes -> Edit code

Step 2: Find component-price.css file.

Step 3: Paste this code at the bottom of the file

 

.card__content .price-item.price-item--regular::before {
    content: "From"
}

 

Result:

B2Bridge_0-1740709984528.png

If this helpful, please let us know by giving us a like and marking its as a solution. Thank you 😍

 

B2Bridge: All-in-one B2B wholesale solution, enabling merchants to set up a complete B2B store quickly and without coding.
With features like customizable registration forms, customer segmentation, and tailored price lists, it simplifies wholesale management.
B2Bridge also includes a dedicated Quick Order page and flexible Net Payment Terms, streamlining operations for wholesalers and enhancing the buying experience.

View solution in original post

Replies 2 (2)

B2Bridge
Excursionist
334 67 82

This is an accepted solution.

Hi @theknottydood, you can follow these steps:

Step 1: Open Online Store -> Themes -> Edit code

Step 2: Find component-price.css file.

Step 3: Paste this code at the bottom of the file

 

.card__content .price-item.price-item--regular::before {
    content: "From"
}

 

Result:

B2Bridge_0-1740709984528.png

If this helpful, please let us know by giving us a like and marking its as a solution. Thank you 😍

 

B2Bridge: All-in-one B2B wholesale solution, enabling merchants to set up a complete B2B store quickly and without coding.
With features like customizable registration forms, customer segmentation, and tailored price lists, it simplifies wholesale management.
B2Bridge also includes a dedicated Quick Order page and flexible Net Payment Terms, streamlining operations for wholesalers and enhancing the buying experience.

theknottydood
Visitor
2 0 0

That was exactly what I was wanting. Thank you SOOO much!!