Changeset 3483870
- Timestamp:
- 03/16/2026 01:01:01 PM (2 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
boxy-woocommerce-custom-redirect-after-checkout/trunk/README.txt
r3483857 r3483870 19 19 = Free Features = 20 20 21 * ✅Redirect all customers to a single custom URL after checkout22 * ✅Optional redirect delay (0–10 seconds)23 * ✅Countdown timer displayed on screen: "You will be redirected in 5... 4... 3... 2... 1..."24 * ✅Works with classic checkout and WooCommerce block checkout25 * ✅Clean modern admin settings page (Boxy Redirect menu)26 * ✅Redirect to full URLs or relative paths (/thank-you)27 * ✅Lightweight — no impact on store performance28 * ✅Fully translatable (i18n ready)29 * ✅Compatible with all major caching plugins21 * Redirect all customers to a single custom URL after checkout 22 * Optional redirect delay (0–10 seconds) 23 * Countdown timer displayed on screen: "You will be redirected in 5... 4... 3... 2... 1..." 24 * Works with classic checkout and WooCommerce block checkout 25 * Clean modern admin settings page (Boxy Redirect menu) 26 * Redirect to full URLs or relative paths (/thank-you) 27 * Lightweight — no impact on store performance 28 * Fully translatable (i18n ready) 29 * Compatible with all major caching plugins 30 30 31 31 = Why Redirect After Checkout? = … … 33 33 The default WooCommerce thank you page is plain and does nothing for your business. A custom redirect lets you: 34 34 35 * Show a **branded thank you page**that matches your store design36 * Promote an **upsell or cross-sell offer**while the customer is in buying mode37 * Collect **customer feedback**with a post-purchase survey38 * Direct customers to a **tutorial or onboarding page**39 * Track conversions with **Google Analytics or Facebook Pixel**40 * Show **payment instructions**for bank transfer orders41 42 = 🔒Upgrade to Pro — Powerful Rules Engine =43 44 The free version redirects all customers to the same URL. **Pro unlocks a full rules engine**so you can redirect different customers to different pages based on what they ordered, who they are, and how they paid.45 46 **Rules work like this:** 35 * Show a branded thank you page that matches your store design 36 * Promote an upsell or cross-sell offer while the customer is in buying mode 37 * Collect customer feedback with a post-purchase survey 38 * Direct customers to a tutorial or onboarding page 39 * Track conversions with Google Analytics or Facebook Pixel 40 * Show payment instructions for bank transfer orders 41 42 = Upgrade to Pro — Powerful Rules Engine = 43 44 The free version redirects all customers to the same URL. Pro unlocks a full rules engine so you can redirect different customers to different pages based on what they ordered, who they are, and how they paid. 45 46 Rules work like this: 47 47 48 48 1. You create multiple redirect rules … … 52 52 5. If no rule matches, your free fallback URL is used 53 53 54 **Every rule shows a plain-English live preview:** 54 Every rule shows a plain-English live preview: 55 55 "When a customer completes checkout and their billing country is Germany, they will be immediately redirected to /de/danke. Customers from other countries will skip this rule." 56 56 57 **Test before going live with the Customer Journey Simulator:** 57 Test before going live with the Customer Journey Simulator: 58 58 Enter a hypothetical customer profile and see exactly which rule would fire and why — before a single real customer is affected. 59 59 60 --- 61 62 = 🥉 Starter Plan — Rules Engine with 4 Conditions = 60 = Starter Plan — Rules Engine with 4 Conditions = 63 61 64 62 Build redirect rules using these conditions: 65 63 66 64 * **Specific Product Purchased** — redirect based on which products are in the order 67 *Example: Customer buys a T-Shirt → redirect to /tshirt-care-guide*65 Example: Customer buys a T-Shirt — redirect to /tshirt-care-guide 68 66 69 67 * **Product Category** — redirect based on product category 70 *Example: Customer buys from Electronics → redirect to /warranty-registration*68 Example: Customer buys from Electronics — redirect to /warranty-registration 71 69 72 70 * **Order Total** — redirect based on amount spent (greater than, less than, between) 73 *Example: Order total over $200 → redirect to /vip-club*71 Example: Order total over $200 — redirect to /vip-club 74 72 75 73 * **User Role** — redirect wholesale, retail, and member customers differently 76 *Example: Wholesale customer checks out → redirect to /wholesale-thank-you* 77 78 Each rule supports **Match ALL** (every condition must be true) or **Match ANY** (at least one condition must be true). Rules are **drag-and-drop sortable** and can be individually enabled or disabled. 79 80 --- 81 82 = 🥈 Pro Plan — All 8 Conditions + Order Data in URL = 74 Example: Wholesale customer checks out — redirect to /wholesale-thank-you 75 76 Each rule supports Match ALL (every condition must be true) or Match ANY (at least one condition must be true). Rules are drag-and-drop sortable and can be individually enabled or disabled. 77 78 = Pro Plan — All 8 Conditions + Order Data in URL = 83 79 84 80 Everything in Starter plus: 85 81 86 82 * **Coupon Code Used** — redirect customers based on the coupon they used 87 *Example: Customer uses coupon FACEBOOK20 → redirect to /facebook-special-offer*88 *Use case: Track ROI from marketing campaigns*83 Example: Customer uses coupon FACEBOOK20 — redirect to /facebook-special-offer 84 Use case: Track ROI from marketing campaigns 89 85 90 86 * **First Time Buyer** — detect a customer's very first order and treat them differently 91 *Example: First order → redirect to /welcome-new-customer with onboarding guide*92 *Returning customers automatically skip this rule*87 Example: First order — redirect to /welcome-new-customer with onboarding guide 88 Returning customers automatically skip this rule 93 89 94 90 * **Payment Method** — redirect based on how the customer paid 95 *Example: Bank transfer → redirect to /payment-instructions with account details*91 Example: Bank transfer — redirect to /payment-instructions with account details 96 92 97 93 * **Customer Country** — redirect based on billing country 98 *Example: Germany → /de/danke, France → /fr/merci, everyone else → /thank-you*94 Example: Germany — /de/danke, France — /fr/merci, everyone else — /thank-you 99 95 100 96 * **Pass Order Data in URL** — append real order details to your redirect URL using variables: 101 `{order_id}` `{first_name}` `{last_name}` `{email}` `{order_total}` `{payment_method}` `{coupon_code}`102 *Example: /thanks?name={first_name}&order={order_id} becomes /thanks?name=John&order=1234*97 {order_id} {first_name} {last_name} {email} {order_total} {payment_method} {coupon_code} 98 Example: /thanks?name={first_name}&order={order_id} becomes /thanks?name=John&order=1234 103 99 104 100 * **Custom Delay Per Rule** — set a different countdown timer for each rule (0–30 seconds) 105 101 106 --- 107 108 = 🥇 Agency Plan — Everything + A/B Testing + Analytics = 102 = Agency Plan — Everything + A/B Testing + Analytics = 109 103 110 104 Everything in Pro plus: 111 105 112 106 * **A/B Testing** — split traffic between multiple redirect URLs with percentage control 113 *Example: 50% of customers go to Page A, 50% go to Page B — find out which converts better*107 Example: 50% of customers go to Page A, 50% go to Page B — find out which converts better 114 108 115 109 * **Analytics Dashboard** — see every redirect that fired, broken down by rule 116 *Includes date range filtering (today, 7 days, 30 days, custom) and A/B test performance comparison*110 Includes date range filtering (today, 7 days, 30 days, custom) and A/B test performance comparison 117 111 118 112 * **Export to CSV** — download your full redirect history … … 121 115 122 116 123 124 ---125 126 117 = Full Customer Journey Example = 127 118 128 119 Rules set up by admin: 129 * Priority 1: Coupon = VIPCODE → /vip-thank-you 130 * Priority 2: Country = Germany → /de/danke 131 * Priority 3: Order Total > $200 → /big-spender-offer 120 121 * Priority 1: Coupon = VIPCODE — redirect to /vip-thank-you 122 * Priority 2: Country = Germany — redirect to /de/danke 123 * Priority 3: Order Total over $200 — redirect to /big-spender-offer 132 124 133 125 Customer checks out with coupon SAVE10 from Germany spending $250: 134 * Rule 1 checked — coupon is SAVE10 not VIPCODE → **skipped** 135 * Rule 2 checked — billing country is Germany → **matched!** 126 127 * Rule 1 checked — coupon is SAVE10 not VIPCODE — skipped 128 * Rule 2 checked — billing country is Germany — matched! 136 129 * Customer is redirected to /de/danke 137 130 * Rules 3 and beyond are never checked … … 154 147 2. Activate the plugin through the Plugins screen in WordPress 155 148 3. Make sure WooCommerce is installed and active 156 4. Go to **Boxy Redirect**in your WordPress admin menu149 4. Go to Boxy Redirect in your WordPress admin menu 157 150 5. Enter your redirect URL and save 158 151 6. Optionally set a redirect delay and enable the countdown timer … … 169 162 Yes. The plugin automatically migrates your saved URL from older versions. No settings will be lost. 170 163 171 = What happens if no Pro rule matches? =172 173 The customer is redirected to the fallback URL set in the free Settings page. If no fallback URL is set the customer stays on the default WooCommerce order confirmation page.164 = What happens if I set no redirect URL? = 165 166 The customer stays on the default WooCommerce order confirmation page. No redirect will happen until you save a URL in the settings. 174 167 175 168 = Can I use a relative URL like /thank-you? = … … 183 176 = Where is the settings page? = 184 177 185 After activation you will find a new top-level menu item called **Boxy Redirect** in your WordPress admin sidebar, just below Plugins. 186 187 = Where can I get the Pro version? = 188 189 Visit the Boxy Redirect settings page in your WordPress admin and click **View Pricing Plans**, or go to [appiesoftwebsolutions.com](https://appiesoftwebsolutions.com/). 178 After activation you will find a new top-level menu item called Boxy Redirect in your WordPress admin sidebar, just below Plugins. 179 180 190 181 191 182 = I need help, where do I go? = 192 183 193 Post in the [plugin support forum](https://wordpress.org/support/plugin/boxy-woocommerce-custom-redirect-after-checkout/)and we will get back to you as soon as possible.184 Post in the plugin support forum at https://wordpress.org/support/plugin/boxy-woocommerce-custom-redirect-after-checkout/ and we will get back to you as soon as possible. 194 185 195 186 == Screenshots == 196 187 197 1. Free settings page — set your redirect URL, delay, and countdown timer 198 2. Redirect rules list — drag to reorder, toggle enable/disable per rule 199 3. Rule builder — configure conditions with live "What Will Happen" preview 200 4. Customer journey simulator — test rules before going live 201 5. Analytics dashboard — redirects by rule and A/B test results 188 1. Settings page — set your redirect URL, delay, and countdown timer 202 189 203 190 == Changelog == 204 191 205 192 = 1.0.4 = 206 * Moved admin menu to top-level "Boxy Redirect"menu for easier access193 * Moved admin menu to top-level Boxy Redirect menu for easier access 207 194 * Added Freemius integration for analytics 208 195 * Improved admin settings page UI … … 225 212 226 213 = 1.0.4 = 227 This update moves the settings page to a new top-level "Boxy Redirect"admin menu and adds Freemius integration. Your existing redirect URL and settings will be kept automatically.214 This update moves the settings page to a new top-level Boxy Redirect admin menu and adds Freemius integration. Your existing redirect URL and settings will be kept automatically.
Note: See TracChangeset
for help on using the changeset viewer.