How to get an urgency Text like in the image below

Hello guys, how can I get such an urgency Text in my product page?

I’m surprised no one has replied even though your message was posted months ago! Did you end up finding a solution that worked for you?

Hello @scottshop ,

I hope you are well!

Basically, this can be done through code. I don’t know which theme you are using but you need to add the liquid code. Go to Online store >> Themes >> Customize >> Add block >> Custom liquid >> paste the code.

{% if product.available %}
  <div class="stock-status">
    <p><span style="color: green;">In stock, ready to ship</span></p>
    
    {% if product.variants.first.inventory_quantity <= 5 %}
      <p><span style="color: orange;">Hurry! Only {{ product.variants.first.inventory_quantity }} left in stock!</span></p>
    {% endif %}
    
  </div>
{% else %}
  <div class="stock-status">
    <p><span style="color: red;">Out of stock</span></p>
  </div>
{% endif %}