Hi – I don’t suppose you could tell me how I can change the Price in the Woocommerce part of this website: http://www.manororganicfarm.co.uk so that it reads From at the beginning of the price? i.e. From £17.82 – £89.20 at the moment there is no ‘From’ as here: http://www.manororganicfarm.co.uk/shop/rib-bone-2/
Thank you!
Hey!
Try adding this code to the Quick CSS:
.single-product .summary p.price:before {
content: "From: ";
}
Cheers!
Josue
Hi – that’s worked perfectly on the detailed product page – any chance there’s some CSS I could use to do the same on the product category page? i.e here: http://www.manororganicfarm.co.uk/product-category/butchery/beef/beef-joints/
Thanks!
Hi!
Please add following code to Quick CSS as well
span.price:before {
content: 'From: ';
}
Regards,
Yigit
Perfect! Many thanks.