How to add the word "from" to the product pricing in Woocommerce

Hi There,

Is there a tutorial on how to add a prefix word ie “FROM” to the price within the product ?

Regards
Dean

Hello Dean,

The easiest way would be to add it through custom CSS since it won’t involve a lot of customization. So kindly try adding this in X > Theme Options > CSS:

.single-product .price::before {
    content: 'From';
    display: inline-block;
    width: auto;
    margin-right: 5px;
}

Kindly note that since this is a custom code that changes the default behavior/display of the theme, you will be responsible to maintain or update the code in case you require further changes or if the code stops working in future updates. If you are uncertain how to proceed, it would be best to get in touch with a developer.

Hope this helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.