|
| 1 | +# StackVerify WordPress Plugin |
| 2 | + |
| 3 | +A lightweight WordPress plugin that fixes one of WordPress’ biggest hidden problems: |
| 4 | + |
| 5 | +> WordPress struggles to reliably turn events (orders, forms, users) into real-time communication and automation. |
| 6 | +
|
| 7 | +This plugin connects WordPress events directly to external communication systems using simple Form IDs. |
| 8 | + |
| 9 | +No backend required. |
| 10 | + |
| 11 | +--- |
| 12 | + |
| 13 | +## 🚨 The Problem in WordPress |
| 14 | + |
| 15 | +Most WordPress sites face the same issues: |
| 16 | + |
| 17 | +- Contact forms sit idle with no real-time follow-up |
| 18 | +- WooCommerce orders are not instantly acted on |
| 19 | +- User registrations are ignored after signup |
| 20 | +- Teams rely on email inboxes instead of automation |
| 21 | +- No central event pipeline for communication |
| 22 | + |
| 23 | +Result: |
| 24 | +> Lost leads, slow response times, and broken customer communication. |
| 25 | +
|
| 26 | +--- |
| 27 | + |
| 28 | +## ⚡ The Solution |
| 29 | + |
| 30 | +StackVerify WordPress Plugin turns WordPress into a real-time communication engine. |
| 31 | + |
| 32 | +Every important event becomes a structured signal: |
| 33 | + |
| 34 | +- Order placed → instant event |
| 35 | +- Form submitted → instant event |
| 36 | +- User registered → instant event |
| 37 | + |
| 38 | +These events are sent to StackVerify using Form IDs and can trigger: |
| 39 | + |
| 40 | +- Email notifications |
| 41 | +- WhatsApp messages |
| 42 | +- Webhooks |
| 43 | +- CRM workflows |
| 44 | +- Internal automation systems |
| 45 | + |
| 46 | +--- |
| 47 | + |
| 48 | +## 🚀 What it enables |
| 49 | + |
| 50 | +Instead of manually checking WordPress: |
| 51 | + |
| 52 | +✔ Customers get instant responses |
| 53 | +✔ Sales teams get real-time leads |
| 54 | +✔ Orders trigger immediate workflows |
| 55 | +✔ No missed communication |
| 56 | + |
| 57 | +--- |
| 58 | + |
| 59 | +## 📦 Installation |
| 60 | + |
| 61 | +### 1. Download plugin |
| 62 | + |
| 63 | +From GitHub Releases: |
| 64 | + |
| 65 | +https://github.com/stackmorgan/stackverify-wordpress/releases/latest |
| 66 | + |
| 67 | +--- |
| 68 | + |
| 69 | +### 2. Install in WordPress |
| 70 | + |
| 71 | +- Go to: Plugins → Add New → Upload Plugin |
| 72 | +- Upload ZIP |
| 73 | +- Activate |
| 74 | + |
| 75 | +--- |
| 76 | + |
| 77 | +## ⚙️ Setup (1–2 minutes) |
| 78 | + |
| 79 | +1. Create a form in StackVerify dashboard |
| 80 | +2. Copy Form ID (example: `frm_orders`) |
| 81 | +3. Open WordPress → StackVerify settings |
| 82 | +4. Map events: |
| 83 | + - WooCommerce Orders |
| 84 | + - Contact Forms |
| 85 | + - User Registrations |
| 86 | +5. Save |
| 87 | + |
| 88 | +Done. |
| 89 | + |
| 90 | +--- |
| 91 | + |
| 92 | +## 🔁 How it works |
| 93 | + |
| 94 | +```text |
| 95 | +WordPress Event Happens |
| 96 | + ↓ |
| 97 | +StackVerify Plugin captures event |
| 98 | + ↓ |
| 99 | +Event is sent via Form ID |
| 100 | + ↓ |
| 101 | +StackVerify processes it |
| 102 | + ↓ |
| 103 | +Triggers communication (email, WhatsApp, webhook, automation) |
| 104 | +``` |
| 105 | +## 📡 Supported WordPress Events |
| 106 | + |
| 107 | +The plugin currently supports: |
| 108 | + |
| 109 | +- WooCommerce Orders |
| 110 | +- Contact Form Submissions |
| 111 | +- User Registrations |
| 112 | + |
| 113 | +More integrations can be added via WordPress hooks and lightweight extensions. |
| 114 | + |
| 115 | +--- |
| 116 | + |
| 117 | +## 🧪 Test Mode |
| 118 | + |
| 119 | +Inside the WordPress admin dashboard, you can send a test event: |
| 120 | + |
| 121 | +> StackVerify → Send Test Event |
| 122 | +
|
| 123 | +This is used to verify: |
| 124 | + |
| 125 | +- Plugin is correctly installed |
| 126 | +- Form IDs are valid |
| 127 | +- WordPress is communicating with StackVerify |
| 128 | +- Event mapping is working as expected |
| 129 | + |
| 130 | +--- |
| 131 | + |
| 132 | +## 🧠 Design Philosophy |
| 133 | + |
| 134 | +This plugin is built on a simple principle: |
| 135 | + |
| 136 | +> WordPress should generate events, not manage communication logic. |
| 137 | +
|
| 138 | +Instead of building and maintaining: |
| 139 | +- Email systems |
| 140 | +- Webhook layers |
| 141 | +- CRM integrations |
| 142 | +- Notification pipelines |
| 143 | + |
| 144 | +WordPress only focuses on capturing events, while StackVerify handles delivery and automation. |
| 145 | + |
| 146 | +This keeps WordPress: |
| 147 | +- Lightweight |
| 148 | +- Faster |
| 149 | +- Easier to maintain |
| 150 | +- More scalable for real businesses |
| 151 | + |
| 152 | +--- |
| 153 | + |
| 154 | +## 🔒 Privacy |
| 155 | + |
| 156 | +- This plugin does NOT store user data externally |
| 157 | +- No tracking or background analytics |
| 158 | +- Data is only sent when events occur |
| 159 | +- You fully control what is transmitted via Form IDs |
| 160 | +- No hidden requests or silent data collection |
| 161 | + |
| 162 | +--- |
| 163 | + |
| 164 | +## 📦 Releases |
| 165 | + |
| 166 | +Latest stable versions are available here: |
| 167 | + |
| 168 | +https://github.com/stackmorgan/stackverify-wordpress/releases |
| 169 | + |
| 170 | +Each release includes a downloadable ZIP file for direct WordPress installation. |
| 171 | + |
| 172 | +--- |
| 173 | + |
| 174 | +## 🧩 Roadmap |
| 175 | + |
| 176 | +Future improvements planned: |
| 177 | + |
| 178 | +- Auto-detect WooCommerce installation |
| 179 | +- Auto-detect Contact Form 7 and WPForms |
| 180 | +- Background queue for high-volume stores |
| 181 | +- Retry system for failed event delivery |
| 182 | +- Advanced event logs dashboard inside WordPress |
| 183 | +- One-click StackVerify onboarding connection |
| 184 | +- Zero-configuration mode (smart defaults) |
| 185 | + |
| 186 | +--- |
| 187 | + |
| 188 | +## 📄 License |
| 189 | + |
| 190 | +MIT License |
| 191 | + |
| 192 | +You are free to use, modify, and distribute this plugin. |
| 193 | + |
| 194 | +--- |
| 195 | + |
| 196 | +## 🌐 Links |
| 197 | + |
| 198 | +- StackVerify Platform: https://stackverify.site |
| 199 | +- StackVerify Forms SDK: https://www.npmjs.com/package/@stackverify/forms |
| 200 | +- GitHub Repository: https://github.com/stackmorgan/stackverify-wordpress |
0 commit comments