Buy me a coffee

Add custom text under Price

To add a custom text under price, you can use this to Custom CSS box.

div.product-price:after {
    content: "Tax included. Free shipping Australia wide";
    display: block;
    font-size: 16px;
    color: #fff;
}

Add Custom Text Under Price 1 Min

Result

Add Custom Text Under Price 2 Min

If you want products belong specific category will have a different text, first you can assign a tag on it. For example: Hand Craft

Add Custom Text Under Price 3 Min

Next, use CSS code like this

/* price custom text */
.tag-hand-craft div.product-price:after {
    content: "Hand Craft products custom text";
    display: block;
    font-size: 16px;
    color: #fff;
}

Add Custom Text Under Price 4 Min

Result

Add Custom Text Under Price 5 Min