Skip to content

Shopify Dude Fix

Why Isn’t Shopify Inventory Decreasing After an Order?

Shopify stock stays unchanged after sales? Enable inventory tracking on every variant and check locations, committed stock, fulfillment apps, and history.

Quick answer: Shopify cannot reduce a variant’s tracked quantity after a sale when inventory tracking is off. Enable Track quantity on the exact variant, assign inventory to the correct location, and inspect inventory states and adjustment history.

The real symptom

An order is placed but the stock number appears unchanged, items keep selling indefinitely, or quantities disagree across admin, POS, and storefront.

Likely causes

  • Track quantity is disabled.
  • Tracking is enabled on one variant but not others.
  • Stock was committed at another location.
  • Continue selling when out of stock is enabled.
  • An app or ERP overwrote the adjustment.
  • The order was canceled, edited, restocked, or refunded.
  • On hand, Available, and Committed are being confused.

Confirmed Community fix

Community answers resolve the basic issue by enabling inventory tracking. Shopify inventory states and automatic deductions depend on tracking being active for that specific variant.

Exact admin path

  1. Open Products and the affected product.
  2. Open the exact variant sold.
  3. Enable Track quantity.
  4. Review Continue selling when out of stock.
  5. Confirm the variant is stocked at the online fulfillment location.
  6. Enter the correct Available quantity.
  7. View adjustment history for existing orders.

Simple checks

{% assign current_variant = product.selected_or_first_available_variant %}
Variant: {{ current_variant.title }}
Available for sale: {{ current_variant.available }}
Inventory policy: {{ current_variant.inventory_policy }}
Inventory management: {{ current_variant.inventory_management }}

If inventory_management is blank, Shopify is not managing inventory for the variant.

Do not do this

Do not manually subtract inventory after every order before checking tracking and history. You may double-deduct stock.

Sources