Skip to content
Search
高度な予約販売

[Shopify] How to Switch to Pre-order When Out of Stock | Accepting Pre-orders After Stock Runs Out

【Shopify】在庫が切れた時に予約販売に切り替える方法|在庫切れ後も予約受付

This article introduces how to smoothly switch to pre-order when a product runs out of stock in your Shopify store, so you don't miss a sales opportunity. We'll explain step by step two setup methods using the Japan-based Shopify app "RuffRuff Pre Order."

Two setup methods you can choose from depending on your inventory management needs:

  • [Simple setup]: A basic setup method using only the RuffRuff Pre Order app
  • [Advanced setup]: A setup method integrated with Shopify Flow that includes overselling prevention

You can choose the optimal method according to the nature of your product and your inventory situation. We'll explain the characteristics and setup steps of each in detail.

The page below is a demo product actually running a pre-order using RuffRuff Pre Order. Please try it out for yourself.

[Simple] How to Switch to Pre-order When Out of Stock

This is a simple setup method achieved using only "RuffRuff Pre Order." Please note that if your store often receives large quantity orders at once, overselling may occur.

For example, if there are 3 units in stock and one customer purchases 5 at once, more than the available inventory could be purchased as a regular item.

If you want to avoid overselling and switch to pre-order when out of stock, please refer to the "[Advanced] How to Switch to Pre-order When Out of Stock Using Flow" section.

Preparation: Enable the App Embed

* If you have already completed the preparation for RuffRuff Pre Order, please skip this preparation and proceed to Step 1.

(1) Install RuffRuff Pre Order from the Shopify App Store

Search for "ruffruff" in the Shopify App Store to find "RuffRuff Pre Order."

(2) Open the app and select "Plans" from the left menu

(3) Review the terms of service and check "I agree to the Terms of Service"

(4) Click "Change Plan" for the plan you want to subscribe to

(5) Review the plan details and click "Approve"

(6) From the Shopify admin, go to Online Store > Themes

(7) Click "Customize" on the Shopify theme where you want to install the app

(8) Select "App embeds" on the left of the screen

(9) Enable the app embed named "RuffRuff Pre Order"

(10) Click "Save"

Step 1: Create a Pre-order Rule

Click 'Create rule' from the Pre-order rules page

(1) Click "Pre-order rules" in the left menu

(2) Click "Create rule" from the Pre-order rules page

Select 'Simple pre order' from the popup that appears

(3) Select "Simple pre order" from the popup that appears

Configure the following settings in Conditions

(4) Enter any name you like in Rule name

(5) Configure the following settings in Conditions

  • Inventory: Less than or equal 0
  • Start date: a date/time in the past
  • Frequency: Daily

ℹ️ With these conditions, the product will switch to pre-order when out of stock (inventory is 0 or less).

Configure the following settings in Actions (Pre-order)

(6) Configure the following settings in Actions (Pre-order)

  • Cart button text: Pre-order
  • Product message: any text you like

ℹ️ Actions (Pre-order) configures how the product behaves when it is in pre-order.

(7) Click "Save"

Step 2: Apply the Pre-order Rule to the Product

Check the products you want to apply the pre-order rule to

(1) Click "Products" in the left menu

(2) Check the products you want to apply the pre-order rule to

(3) Click "Apply rule"

Select the rule you created in Step 1

(4) Select the rule you created in Step 1

(5) Click "Apply rule"

Step 3: Set the Product to Keep Selling Even When Out of Stock

Check 'Continue selling when out of stock'

(1) Access Shopify's product management

(2) Open the product details for the relevant product

(3) Check "Continue selling when out of stock"

⚠️ Due to Shopify's specifications, if you don't enable this setting, the product cannot be sold at all once it's out of stock, so be sure to configure it.

That completes the setup.

Why Does Overselling Occur? (In the Case of Simple Setup)

With Shopify's standard functionality, a product that is out of stock can no longer be purchased. To accept pre-orders even when out of stock, you need to check "Continue selling when out of stock" in the Shopify product settings.

However, enabling this setting means Shopify no longer checks inventory levels at the time of purchase. As a result, when stock is running low, orders exceeding the actual inventory quantity (overselling) may be accepted as regular purchases.

(Example: With only 3 units in stock, a customer is able to order 5 at once.)

[Advanced] How to Switch to Pre-order When Out of Stock Using Flow

By using RuffRuff Pre Order together with Shopify Flow, you can avoid the overselling issue that was a challenge in the "[Simple] How to Switch to Pre-order When Out of Stock" method.

The setup in this section is a little more complex, and there may be a slight time lag before the product switches to pre-order when it goes out of stock.

Preparation Through Step 2: Same as Described Above

Preparation through Step 2 are the same as in "[Simple] How to Switch to Pre-order When Out of Stock," so please refer to the settings described above.

Step 3: Set the Product to Stop Selling When Out of Stock

Uncheck 'Continue selling when out of stock'

(1) Access Shopify's product management

(2) Open the product details for the relevant product

(3) Uncheck "Continue selling when out of stock"

⚠️ Please note that this differs from the setting described in "[Simple] How to Switch to Pre-order When Out of Stock" above.

Step 5: Create a Workflow to Check "Continue Selling When Out of Stock" When Out of Stock

Click 'Create workflow'

(1) Open the Shopify Flow app

(2) Click "Create workflow"

Set the trigger to 'Product variant out of stock'

(3) Set the trigger to "Product variant out of stock"

Set conditions to identify the products you want to pre-order

(4) Set conditions to identify the products you want to pre-order

ℹ️ In the attached image, SKU match is used as the condition, but if you want to apply this to multiple products, set the condition using product tags, collections, etc. If you want to apply this to all products, no condition is necessary.

Select 'Send Admin API request' as the action

(5) Select "Send Admin API request" as the action

(6) Select "productVariantsBulkUpdate" for the mutation

(7) Enter the sample code below in the mutation input

(Sample code)

{

"variants": [

{

"id": "{{productVariant.id}}",

"inventoryPolicy": "CONTINUE"

}

],

"productId": "{{productVariant.product.id}}",

"allowPartialUpdates": true

}

Click 'Turn on workflow'

(8) Click "Turn on workflow"

Step 6: Create a Workflow to Uncheck "Continue Selling When Out of Stock" When Restocked

Click 'Create workflow'

(1) Open the Shopify Flow app

(2) Click "Create workflow"

Set the trigger to 'Product variant back in stock'

(3)Set the trigger to "Product variant back in stock"

Set conditions to identify the products you want to pre-order

(4) Set conditions to identify the products you want to pre-order

ℹ️ In the attached image, SKU match is used as the condition, but if you want to apply this to multiple products, set the condition using product tags, collections, etc. If you want to apply this to all products, no condition is necessary.

Select 'Send Admin API request' as the action

(4) Select "Send Admin API request" as the action

(5) Select "productVariantsBulkUpdate" for the mutation

(6) Enter the sample code below in the mutation input

(Sample code)

{

"variants": [

{ "id": "{{productVariant.id}}", "inventoryPolicy": "DENY" }

],

"productId": "{{productVariant.product.id}}",

"allowPartialUpdates": true

}

Click 'Turn on workflow'

(7) Click "Turn on workflow"

That completes the setup.

Why Does This Prevent Overselling? (With Shopify Flow Integration)

By integrating the automation tool Shopify Flow, you can prevent the risk of overselling. Here's how it works.

Normally, When In Stock

  • The product's "Continue selling when out of stock" setting is off.
  • This allows Shopify's inventory check to function, so orders exceeding the available stock cannot be placed.

The Moment Stock Reaches Zero

  • Shopify Flow detects that the item is "out of stock" and runs automatically.
  • Flow switches the product's "Continue selling when out of stock" setting to on.
  • At the same time, the RuffRuff Pre Order app's rule is applied, and the product page switches to a "Pre-order" display.

The Moment the Product Is Restocked

  • Shopify Flow detects that the item is "in stock" and runs automatically.
  • Flow switches the product's "Continue selling when out of stock" setting back to off.
  • The product returns to its normal selling state.

In Closing

This guide explained how to automatically switch to pre-order when out of stock using the "RuffRuff Pre Order" app. The characteristics of each setup method are summarized below.

Pros and Cons of [Simple Setup]

  • Pros: Simple to set up, and can be implemented without Shopify Flow
  • Cons: Overselling (purchases exceeding actual inventory) may occur when stock is running low

Pros and Cons of [Advanced Setup]

  • Pros: Prevents overselling by leveraging the inventory check feature
  • Cons: Setup is somewhat more complex, and there may be a slight time lag when switching from out of stock to pre-order

Notes When Setting This Up

  1. Since Shopify's inventory management setting ("Continue selling when out of stock") differs between the two methods, please check carefully when configuring it
  2. Configure the workflow conditions appropriately according to how you identify the target products (SKU, tags, collections, etc.)
  3. For [Advanced setup], make sure both the out-of-stock and restock workflows are configured correctly

Support Information

If you run into any issues while setting this up, or need more detailed information, please contact the RuffRuff Pre Order support team. We'll guide you toward the optimal setup method for your product's characteristics and sales situation.

We hope this guide helps you avoid missing sales opportunities even when out of stock, leading to improved customer satisfaction and business growth.

Shopify ✕ Discount

View all

How to Set Up Discounts on Subscription Products by Membership Rank in Shopify

Learn how to vary subscription prices by membership rank using Shopify Subscription. Using the RuffRuff Order Bonus app, this guide walks through — with screenshots — how to automatically apply a t...

【2026年最新】Shopifyディスカウント施策17選|無料の割引機能からアプリまで、売上UPとリピート促進を実現

[2026 Latest] 17 Shopify Discount Strategies | From Free Discount Features to Apps — Boost Sales and Drive Repeat Purchases

The complete guide to Shopify discount strategies. From free built-in features to advanced apps, this article covers 17 strategies that boost sales and drive repeat purchases at the same time. Expl...

How to Set Up Volume Discounts on Shopify | Simple Bulk-Purchase Discount Settings

This article explains how to set up volume discounts (bulk-purchase discounts) on Shopify using the easy-to-configure Shopify app "RuffRuff Order Bonus."

How to Set Up Tiered Shipping Discounts Based on Cart Quantity in Shopify | Free Shipping or Half-Price Shipping Based on Item Count

This article clearly explains, step by step, how to use the Shopify app "RuffRuff Order Bonus" — which is easy to use with simple settings — to set up half-price or free shipping when customers pur...

How to Set Discount Rates by Membership Rank in Shopify | Discounts Using Customer Tags

Learn how to set up membership-rank discounts using the simple, easy-to-configure Shopify app "RuffRuff Order Bonus." This guide walks through the setup steps in detail for applying tiered discount...

How to Offer Free Shipping Exclusively for VIP Members on Shopify | Simple Setup for Free Shipping When Customers Have the VIP Customer Tag

Boost customer loyalty by offering free shipping exclusively to VIP members! This article gives a beginner-friendly explanation of how to set up shipping discounts using customer tags with the easy...

Shopify ✕ Pre-order

View all
Shopifyで期間限定セールを実施する3つの方法 - 純正機能からアプリ活用まで

Shopify Limited-Time Sale Guide: Comparing and Explaining 3 Methods

A thorough guide to the three ways to run a limited-time sale on Shopify. Compares the built-in feature, manual setup, and dedicated apps, along with the pros and cons of each and how to use RuffR...

ShopifyでVIP会員限定販売を実装|RuffRuffアプリで完全ガイド

Implementing VIP Member-Only Sales on Shopify | The Complete Guide with RuffRuff Apps

A detailed guide to implementing VIP member-only sales on Shopify. A complete step-by-step setup guide using the RuffRuff Order Limits and RuffRuff Pre Order apps. Boost customer loyalty and increa...

Shopifyアプリ「RuffRuff 予約販売」のカウントダウンタイマー機能の使い方・仕様

How to Use and Specifications of the Countdown Timer Feature in the Shopify App "RuffRuff Pre Order"

Explains the basic steps for installing the "Countdown Timer" feature of RuffRuff Pre Order on the product page. Assuming an Online Store 2.0 compatible theme, this briefly summarizes the key point...

【Shopify】LINE会員向けに限定販売を実施する方法|CRM PLUS on LINEとRuffRuff 予約販売を活用

[Shopify] How to Offer Exclusive Sales for LINE Members | Using CRM PLUS on LINE × RuffRuff Pre Order

Explains how to combine CRM PLUS on LINE with RuffRuff Pre Order to offer products exclusively to LINE-linked members and sell at discounted prices. This article introduces, step by step, effective...

【Shopify】LINE連携会員限定販売を実施する方法|Lipify × RuffRuff 予約販売の活用例

[Shopify] How to Run Exclusive Sales for LINE-Linked Members | A Use Case of Lipify × RuffRuff Pre Order

This article explains how to sell products exclusively to LINE-linked members on Shopify. It introduces recommended Shopify apps and shares example settings for exclusive sales and promotions for L...

ShopifyでVIP会員限定で先行販売|発売予告→先行販売→通常販売の3段階設定

Early Access Exclusively for VIP Members on Shopify | 3-Stage Setup: Coming Soon → Early Access → Regular Sale

A detailed explanation of how to run early access exclusively for VIP members on Shopify. Using the RuffRuff Pre Order app, this article introduces step by step how to implement effective member-ex...

Shopify ✕ Order limits

View all
【2026年最新】Shopify購入制限アプリ9選を徹底比較!機能・料金・日本語対応で比較

[2026 Latest] A Thorough Comparison of 9 Shopify Purchase Limiting Apps! Comparing Features, Pricing, and Japanese Language Support

A thorough 2026 comparison of 9 must-have order limiting apps for Shopify stores! From quantity, price, and selling period limits to fraud prevention, find the best app for your store based on feat...

Shopifyで複雑な条件(都道府県・重量・金額の組み合わせ)で配送方法や配送料を出し分ける方法

How to Differentiate Shipping Methods and Rates in Shopify for Complex Conditions (Combinations of Prefecture, Weight, and Price)

Explains how to set up complex shipping conditions in Shopify. Introduces the concrete steps for combining prefecture, product weight, and purchase amount to differentiate Standard Shipping and Nek...

【2025年最新】Shopifyで金額制限|おすすめ購入制限アプリも紹介

[2026 Latest] Price Limits on Shopify | Recommended Order Limits Apps Included

Learn how to set price limits on Shopify. Using RuffRuff Order Limits, this article explains in detail how to set a price limit per order, along with the steps and various applications of price lim...

【2026最新】Shopifyで同梱制御の実現方法|同梱制限に役立つShopifyアプリと設定手順も解説

[2026 Latest] How to Implement Bundle Control in Shopify | Also Covering Helpful Shopify Apps and Setup Steps for Bundle Restrictions

A thorough explanation of how to set up bundle control in Shopify! We introduce recommended apps for handling various shipping conditions, along with the steps for setting up effective bundle restr...

Shopifyで単品購入不可の設定を実施する方法|セットでないと購入不可

[2026 Latest] How to Disable Single-Item Purchases on Shopify

This article explains how to prevent a specific product from being purchased individually on Shopify. We introduce in detail the steps for setting up bundle restrictions with RuffRuff Order Limits,...

【2026最新】Shopifyで個数制限の実施方法!数量を基準に購入制限

[2026 Latest] How to Implement Quantity Limits on Shopify! Restrict Purchases Based on Quantity

Learn how to set up quantity limits on your Shopify store. Using RuffRuff Order Limits, this article provides beginner-friendly steps for easily managing quantity limits. It delivers information to...

Shopify × Sales Period Settings

View all
Shopifyで期間限定販売を実施する方法|販売期間設定アプリも紹介

[Updated for 2026] How to Run Limited-Time Sales on Shopify | Selling Period Setting Apps Compared

A detailed guide to setting up limited-time sales on Shopify, plus our recommended apps. Learn the strategies for boosting sales in a short period of time!

【2026最新】Shopifyで発売予告を実施する方法|発売予告アプリも紹介

[Updated for 2026] How to Run Release Announcements on Shopify | Recommended Apps

Learn how to run release announcements on Shopify and which apps to use. We explain concrete techniques and setup methods to build customer anticipation and boost sales on launch day, along with ti...

Shopifyアプリ「RuffRuff 販売期間」のカウントダウンタイマー機能の使い方・仕様

How to Use the Countdown Timer Feature in the Shopify App "RuffRuff Selling Periods": Setup Guide & Specifications

Learn the basic setup and usage of the RuffRuff Selling Periods countdown timer. Discover how showing the remaining time can create urgency and boost your conversion rate.

Shopify ✕ Gift

View all
Shopifyで繰り返しギフトを実現する方法|条件達成ごとにギフト商品を配布

How to Set Up a Repeatable Gift on Shopify | Give a Gift Every Time a Condition Is Met

A guide to setting up a repeatable gift on Shopify, like "1 free gift for every 3 purchased." With the Shopify app "RuffRuff Order Bonus," you can implement automatic gifts based on purchase quanti...

Shopifyで選べるギフトを実現する方法|条件達成でお客様が好みの商品を選択

How to Offer a Choice Gift on Shopify | Let Customers Pick Their Favorite Product When a Condition Is Met

A guide to setting up a "choice gift" on Shopify, letting customers pick their favorite gift when a condition is met. Learn how to use the Shopify app "RuffRuff Order Bonus" to build a novelty camp...

Shopifyで条件達成時にデジタル商品を無料プレゼントする方法

How to Give Away a Free Digital Product on Shopify When a Condition Is Met

A guide to giving away digital products as a gift on Shopify. Learn how to connect the "Digital Downloads" app with "RuffRuff Order Bonus" to automatically send buyers digital content, step by step.

How to Give VIP Customers a Free Gift on Shopify | Gift Distribution Based on Customer Tags

A detailed guide to automatically distributing a free gift to VIP customers based on a customer tag, using the RuffRuff Order Bonus Shopify app. Boost customer satisfaction and repeat purchase rate...

How to Distribute Sample Products on Shopify | Gift Distribution Based on Amount with RuffRuff Order Bonus

A guide to automatically distributing sample products on Shopify. Learn how to use the RuffRuff Order Bonus app to give away a sample product on orders of ¥10,000 or more, boosting average order va...

How to Give Away Free Gifts on Shopify | Gift Distribution Based on Quantity

A step-by-step guide with screenshots to automatically distribute free gifts on Shopify. Learn how to configure a 3-or-more quantity condition and enable your theme with the RuffRuff Order Bonus ap...

Shopify ✕ Blog

View all
Shopifyタグ一覧・絞り込み機能の導入方法|3つの実装アプローチを解説

How to Implement Tag Lists and Tag Filtering in Shopify

A complete guide to Shopify's tag feature. Implement tag list display and filtering using three methods: themes, apps, or code. We also cover setup and customization steps for RuffRuff Product & Bl...

【2025】Shopifyのタグ一覧アプリを徹底比較|表示位置やタグ絞り込み(タグフィルター)機能など

Comparing 3 Shopify Tag List Apps | Pricing, Features, and Setup Explained

Compare the Shopify tag list apps "RuffRuff Product & Blog Tags," "Simple Blog Tag Filter," and "Quick Tag Search." We break down pricing, features, and setup to help you choose the best app for yo...

Shopifyのブログ記事に目次を自動表示|3つの方法と無料アプリの設定手順

3 Ways to Automatically Display a Table of Contents in Shopify Blog Posts | Free App Setup Guide

Learn three methods to display a table of contents in Shopify blog posts (source code customization, app usage, theme usage). Step-by-step instructions focus on setup using the free app RuffRuff Ta...

Shopifyブログの著者プロフィール表示方法【3つの選択肢を比較】

How to Display Author Profiles on Shopify Blog Posts [Comparing 3 Options]

A thorough comparison of three ways to display author profile information on Shopify blog posts. We explain the features, advantages, and disadvantages of the standard feature, source code customiz...

How to Display Shopify Tag Lists by Language | Show Japanese and English Tags Separately Using an App

Learn how to display tag lists on Shopify collection pages by language. This guide provides step-by-step instructions with screenshots on using the RuffRuff Product & Blog Tags app (Regular Pla...