How to add "starting from" in front of the price

Hi this is my website

www.neoliving.au

I would like to add in front of every product “starting from$…”

How could I code this thanks

Kind regards

Hi @leoxin

You can do that by adding this code to Custom CSS in Online Store > Themes > Customize > Theme settings

.price__container { display: flex !important; }
.price__container:before { content: 'Starting from'; padding-right: 4px; }

Hey Dan

Thank you, looks like its working on the editor but it says it can not be published.

Do you have any recommendations for this :smiley:

Hi @leoxin

Welcome to Shopify Community.

You can do this easily on Shopify.

Please go to Online Store → Themes → Edit Default Theme Content.

On Products tab, find Product Price.

On the first field, i.e. from price html, enter Starting from {{ price }}

This should do the trick.

Thank you.

Sajat


If this is helpful, please Like and Accept the solution.
Want to modify or custom changes on store? Let me help.

Please remove code from Custom CSS and then open theme.liquid file, add this code after in Online Store > Themes > Edit code


1 Like

That Woked great thank you so much!

1 Like

Very welcome!