Removeing inventory on the way

Topic summary

A user seeks help removing the “inventory on the way” feature from product pages while using the Impulse theme.

A responder provides a technical solution:

  • Navigate to the Product Template file (sections/product-template.liquid or sections/main-product.liquid)
  • Locate and modify code containing:
    • {% if product.incoming %}
    • “Inventory on the way” markup
    • {% endif %}

The solution involves editing Liquid template code to remove or comment out the inventory display section. The discussion appears to be ongoing, with the initial guidance provided but no confirmation of successful implementation yet.

Summarized with AI on November 8. AI used: claude-sonnet-4-5-20250929.

Hello, can anyone help me figure out how to remove the inventory on the way, from my product pages? I’m using the impulse theme.

Hi,

You need to modify code at Product Template (sections/product-template.liquid or sections/main-product.liquid.)

Example of code

{% if product.incoming %} 
  

Inventory on the way

{% endif %}