## ✅ Issue 1: WordPress Media Not Loading **Problem:** WP media library not loaded error **Solution:** - Added fallback to URL prompt - Better error handling - User can still insert images if WP media fails ## ✅ Issue 2: Button Variables Filter **Problem:** All variables shown in button link field **Solution:** - Filter to only show URL variables - Applied to both RichTextEditor and EmailBuilder - Only `*_url` variables displayed **Before:** {order_number} {customer_name} {order_total} ... **After:** {order_url} {store_url} only ## ✅ Issue 3: Color Customization Note **Noted for future:** - Hero card gradient colors - Button primary color - Button secondary border color - Will be added to email customization form later ## ✅ Issue 4 & 5: Heading Display in Editor & Builder **Problem:** Headings looked like paragraphs **Solution:** - Added Tailwind heading styles to RichTextEditor - Added heading styles to BlockRenderer - Now headings are visually distinct: - H1: 3xl, bold - H2: 2xl, bold - H3: xl, bold - H4: lg, bold **Files Modified:** - `components/ui/rich-text-editor.tsx` - `components/EmailBuilder/BlockRenderer.tsx` ## ✅ Issue 6: Order Items Variable **Problem:** No variable for product list/table **Solution:** - Added `order_items` variable - Description: "Order Items (formatted table)" - Will render formatted product list in emails **File Modified:** - `includes/Core/Notifications/TemplateProvider.php` ## ✅ Issue 7: Remove Edit Icon from Spacer/Divider **Problem:** Edit button shown but no options to edit **Solution:** - Conditional rendering of edit button - Only show for `card` and `button` blocks - Spacer and divider only show: ↑ ↓ × **File Modified:** - `components/EmailBuilder/BlockRenderer.tsx` --- ## 📋 Summary All user feedback addressed: 1. ✅ WP Media fallback 2. ✅ Button variables filtered 3. ✅ Color customization noted 4. ✅ Headings visible in editor 5. ✅ Headings visible in builder 6. ✅ Order items variable added 7. ✅ Edit icon removed from spacer/divider Ready for testing! ��
WooNooW
WooNooW is a modern experience layer for WooCommerce — enhancing UX, speed, and reliability without data migration.
It keeps WooCommerce as the core engine while providing a modern React-powered interface for both the storefront (cart, checkout, my‑account) and the admin (orders, dashboard).
Three Admin Modes:
- Normal Mode: Traditional wp-admin integration (
/wp-admin/admin.php?page=woonoow) - Fullscreen Mode: Distraction-free interface (toggle in header)
- Standalone Mode: Complete standalone app at
yoursite.com/adminwith custom login ✨
🔍 Background
WooCommerce is the most used e‑commerce engine in the world, but its architecture has become heavy and fragmented.
With React‑based blocks (Checkout, Cart, Product Edit) and HPOS now rolling out, many existing addons are becoming obsolete or unstable.
WooNooW bridges the gap between Woo’s legacy PHP system and the new modern stack — so users get performance and simplicity without losing compatibility.
🚀 Key Principles
- No Migration Needed – Woo data stays intact.
- Safe Activate/Deactivate – revert to native Woo anytime, no data loss.
- Hybrid by Default – SSR + React islands for Cart/Checkout/My‑Account.
- Full SPA Toggle – optional React‑only mode for max performance.
- HPOS Mandatory – optimized datastore and async operations.
- Compat Layer – hook mirror + slot rendering for legacy addons.
- Async Mail & Tasks – powered by Action Scheduler.
🧱 Tech Stack
| Layer | Technology |
|---|---|
| Backend | PHP 8.2+, WordPress, WooCommerce (HPOS), Action Scheduler |
| Frontend | React 18 + TypeScript, Vite, React Query, Tailwind (optional) |
| Build & Package | Composer, NPM, ESM scripts, Zip automation |
| Architecture | Modular PSR‑4 classes, REST‑driven SPA islands |
🧩 Project Structure
woonoow/
├── admin-spa/
│ ├── src/
│ │ ├── components/
│ │ │ ├── filters/
│ │ │ │ ├── DateRange.tsx
│ │ │ │ └── OrderBy.tsx
│ │ │ └── CommandPalette.tsx
│ │ ├── hooks/
│ │ │ └── useShortcuts.tsx
│ │ ├── lib/
│ │ │ ├── api.ts
│ │ │ ├── currency.ts
│ │ │ ├── dates.ts
│ │ │ ├── query-params.ts
│ │ │ ├── useCommandStore.ts
│ │ │ └── utils.ts
│ │ ├── pages/
│ │ │ └── orders/
│ │ │ ├── partials
│ │ │ │ └── OrderForm.tsx
│ │ │ ├── Orders.tsx
│ │ │ ├── OrdersNew.tsx
│ │ │ └── OrderShow.tsx
│ │ ├── routes/
│ │ │ └── Dashboard.tsx
│ │ ├── types/
│ │ │ └── qrcode.d.ts
│ │ ├── App.tsx
│ │ ├── index.css
│ │ └── main.tsx
│ └── vite.config.ts
├── includes/
│ ├── Admin/
│ │ ├── Assets.php
│ │ └── Menu.php
│ ├── Api/
│ │ ├── CheckoutController.php
│ │ ├── OrdersController.php
│ │ ├── Permissions.php
│ │ └── Routes.php
│ ├── Compat/
│ │ ├── HideWooMenus.php
│ │ └── HooksShim.php
│ └── Core/
│ ├── DataStores/
│ │ ├── OrderStore_HPOS.php
│ │ └── OrderStore.php
│ ├── Mail/
│ │ ├── MailQueue.php
│ │ └── WooEmailOverride.php
│ ├── Bootstrap.php
│ └── Features.php
├── woonoow.php
└── docs (project notes, SOP, etc.)
⚙️ Development Workflow
- LocalWP / Docker setup with WordPress + WooCommerce.
- Activate plugin:
WooNooWshould appear in the admin menu. - Build SPAs:
npm run build - Package zip:
npm run pack - Upload
dist/woonoow.zipinto WordPress → Plugins → Add New → Upload.
🧭 Vision
“WooCommerce, reimagined for now.”
WooNooW delivers modern speed and UX while keeping WooCommerce’s ecosystem alive.
No migration. No lock‑in. Just Woo, evolved.