How this brand got that?

How he changed “In stock, shipped within 24h to Germany”? My theme is Impact (400$ theme)

Need to have details like a website link in order to say exactly what that specific merchant may or may not be using.

Could be a custom liquid block with a location subscription. Could be a theme feature. Could be as simple as adding a text block. Who knows. No one knows because no one can access the website by looking at a screenshot.

Hi @Somehow999

Check this first:

  1. Go to Online Store → Themes → Customize

  2. Open a Product page

  3. Look for sections like:

    • Inventory status

    • Shipping / Delivery information

    • Trust / reassurance text

  4. You’ll often find a setting like:

    • “In stock”

    • “Ships within X hours”

    • Country name added dynamically

The country name usually comes from Shopify Markets / localization.

Best regards,
Devcoder :laptop:

Product page block text (Impact-specific)

Impact lets you add custom text blocks under the price.

Check this:

  1. Open Online Store → Themes → Customize

  2. Open a Product page

  3. Look for a block like:

    • “Text”

    • “Availability”

    • “Product information”

If you see a text block with that sentence, that’s where it was changed.

This allows per-product or per-template control.

Metafield (used by many Impact stores)

Many Impact demos use product metafields for shipping messages.

How to check:

  1. Go to Settings → Custom data → Products

  2. Look for something like:

    • shipping_info

    • delivery_time

    • availability_note

Then:

  • Edit a product

  • Scroll down to Metafields

  • The text is entered there

Impact often renders this below the price automatically.

Hi @Somehow999 ,
That “In stock, shipped within 24h to Germany” text is not default Shopify inventory text. It’s a custom availability/shipping message added at the theme level

This can be done directly from Theme Customization using a Custom Liquid block.

  1. Go to Online Store → Themes → Customize
  2. Open a Product page
  3. In the Product information section
    click Add block → Custom liquid
  4. Paste this code:
{% if product.available %}
  <p class="inventory-status">
    ✔ In stock, shipped within 24h to Germany
  </p>
{% endif %}
  1. Drag the block below the product title or price (wherever needed)
  2. Save

you can control this text per product using product metafield:

{% if product.available and product.metafields.custom.shipping_message != blank %}
  <p class="inventory-status">
    ✔ {{ product.metafields.custom.shipping_message }}
  </p>
{% endif %}

They invested in either the theme customization , or an app or both.
If you ship to only one region you can hardcode the country, technically could even be done with just a CSS band-aid if a stock message already is on the page.

If there’s anything other than one region,..
Unless your using markets , and or strict shipping regions, and or a location picker you’ll need an app/service to know which region the customer might be in for non-signed in viewers.
Signed in customers you can use address and other business logic for the region display.

None of this accounts for actual delivery estimate times being accurate or dynamic.

Reach out for advanced theme customizations like this done right.