Here is the code to show free Delivery text on product page shopfy.
{% if product.price >= 3000 %}
Free Delivery on orders over £30
{% endif %}
note: the product.price returns a integer, so 30.00 = 3000
You can make the order condition as per you need.
Thanks