Hello,
First, you have to reach your relative Item Menu (with the Id 469), and in Products Options tab, find the Product data display part, edit your "Which price" option => "Cheapest Price" maybe ?
And maybe you will have to customize a little more in order to have your text ("price from: XXX € ").
Follow me step by step :
- Have a look on this
documentation
to learn how to add your own css command.
- Then use this kind of command css (documentation
here
) to add text elements via Css.
- Then get your element Html class, point your element then right-click => Inspect (or Inspector tool)
=> A new window will be open, and will display html code (and Css as well).
- Built your own command css that will follow this scheme :
.HTML_price_class::before { content: "price from:"; }
.HTML_price_class::after{ content: "€ "; }
Hope this will help you to achieved what you need.
Regards