A merchant seeks to set up automated alerts when no orders are received within a specific timeframe, aiming to detect checkout issues early (e.g., broken shipping buttons preventing purchases).
Initial Challenge:
Standard order notification apps only alert when orders occur, not when they stop
The merchant uses Shopify Plus (non-headless setup)
Proposed Solution:
One user shared a working Shopify Flow implementation:
Runs hourly scheduled task
Queries orders from past 12 hours using: created_at:<='{{ scheduledAt }}' AND created_at:>'{{ scheduledAt | date_minus: "12 hours" }}'
Checks if at least one order has totalSum > 1
Sends alert email if no qualifying orders found
Current Status:
Another merchant has requested detailed step-by-step Flow configuration instructions. The discussion remains open with the technical solution outlined but implementation details pending.
Summarized with AI on October 29.
AI used: claude-sonnet-4-5-20250929.
This email is NOT for customers. This is to let the shop owners know when the checkout is not working.
Scenario: A developer updated a setting on our site. That setting affected the shipping button, it clicked but kept the customer back to the same page. We were not getting errors, but customers were not able to checkout.
in this scenario, a good solution would be to receive notification if we have not had any orders in a certain time frame.