Conditional redirect recipes: six patterns
- 1
Recipe 1 — Device deep-link
Route iOS to the App Store, Android to Google Play, desktop to a fallback web page. Rule: if user-agent matches iOS → App Store URL; matches Android → Play URL; else → /download.
- 2
Recipe 2 — Country-based variant
Route by IP country: US visitors to /us-shop, EU visitors to /eu-shop with VAT shown, others to /global-shop. The country header comes from your CDN (Vercel sets x-vercel-ip-country; Cloudflare sets cf-ipcountry).
- 3
Recipe 3 — Time-of-day open/closed
Restaurant scenario: scans during opening hours go to ordering page; scans after hours go to a "we open at 11am" page with email signup. Rule: if hour-of-day between 11 and 22 → /order; else → /closed.
- 4
Recipe 4 — Scan-count gating
First 100 scans: special launch landing page with free gift. After that: regular landing page. Rule: if scan_count_for_this_qr <= 100 → /launch-special; else → /landing.
- 5
Recipe 5 — A/B test
50/50 split between two destinations. Rule: hash the scan id modulo 2 → 0 = /variant-a, 1 = /variant-b. The platform tracks conversion per variant automatically; pick the winner after the sample size threshold is hit.
- 6
Recipe 6 — Multi-level fallback
Chain rules in priority order. Example: if first-time scanner AND in EU AND on mobile → /eu-mobile-first; else if EU AND mobile → /eu-mobile; else if EU → /eu-desktop; fallback → /global.
Frequently asked questions
What is QRCode Suite?
QRCode Suite is a standalone QR code platform: create a free account and generate branded, dynamic QR codes in the browser — no WordPress required. Connectors bring the same codes to WordPress and WooCommerce, where orders can be attributed to specific QR codes.
Does QRCode Suite work without WordPress?
Yes. QRCode Suite is a standalone SaaS — sign up, create QR codes, and track scans entirely on qrcode-suite.com. The WordPress plugin is an optional connector that brings your codes into wp-admin and adds WooCommerce order attribution.
Does QRCode Suite require a separate subscription?
The Free plan is available at no cost — no credit card required. Paid plans (Pro €9, Business €29, Agency €79 per month) unlock unlimited codes, redirect rules, and more. There is no separate per-scan fee.
What QR code types does QRCode Suite support?
QRCode Suite supports 22 QR code types: Static URL, Dynamic URL, Plain Text, Phone, Email, Location, Link Hub, SMS, WhatsApp, Wi-Fi, vCard, Social profile, PDF, File download, App download, Coupon, Calendar event, Lead capture form, Review collection, Wholesale inquiry, Loyalty reward, and Custom payload.
Can I change the destination of a QR code after printing it?
Yes. Dynamic QR codes use a short redirect URL. You can update the destination from your dashboard at any time without generating or reprinting the code.