
內容簡介
Wizybot 是一款 AI 聊天機器人及 CRM 外掛,能將所有聊天整合到一個智慧收件箱中。它結合了即時聊天、WhatsApp、Instagram、Facebook、電子郵件及社群媒體,讓 AI 代理能夠處理訂單、退款、常見問題及推薦,提升顧客忠誠度與重複購買率。
【主要功能】
• AI 聊天機器人及即時聊天:24/7 提供品牌語調的支援
• 一體化 CRM 收件箱:整合 WhatsApp、電子郵件、聊天等
• CRM 驅動的 WhatsApp 行銷:自動化流程恢復放棄購物車
• AI 聊天機器人推薦:將每次聊天轉化為銷售
• 聊天及私訊自動化:AI 即時回應評論
外掛標籤
開發者團隊
原文外掛簡介
Wizybot is an AI chatbot and CRM that unifies every chat into a single smart inbox. It brings live chat, WhatsApp, Instagram, Facebook, email, and social media together into one unified CRM view of your customers, and lets AI Agents handle orders, refunds, FAQs, and recommendations in your brand’s tone. Launch your chatbot in minutes and turn on CRM-powered WhatsApp marketing to boost repeat purchases and loyalty, all from one smart CRM inbox.
Key Features:
AI Chatbot and live chat: resolves support in your brand’s tone, 24/7
All-in-one CRM inbox: brings together WhatsApp, email, chat, Instagram, and more
CRM-powered WhatsApp marketing: automated flows to recover abandoned carts
AI chatbot recommendations: turns every chat into a sale
Chat and DM automation: AI responds to comments instantly
Requirements:
WordPress 5.2 or higher
PHP 7.2 or higher
WooCommerce plugin (for full ecommerce features)
Active Wizybot account or plan
By installing this plugin, you consent to share store information and customer interaction data with Wizybot. See the Privacy section below.
Licensing
Plugin Code: GPL v2 or later
– You can modify, use, and redistribute the plugin code under GPL v2 terms
– Source code is open and freely available
Wizybot Service: Proprietary Software-as-a-Service (SaaS)
– The Wizybot platform itself is proprietary and closed-source
– Wizybot service is subject to Wizybot’s Terms of Service and Privacy Policy
– You require an active paid subscription to access Wizybot services
– You cannot modify, reproduce, or redistribute the Wizybot subscription service
– You cannot bypass or circumvent subscription requirements
What This Means:
– This WordPress plugin is free and open-source
– Using Wizybot’s cloud platform requires a paid subscription
– You pay for access to cloud services, not for software licenses
– The plugin integrates your WordPress site with Wizybot’s proprietary platform
Third-Party Service
This plugin integrates with Wizybot, a third-party Software-as-a-Service (SaaS) platform.
Service Details:
– Provider: Wizybot Inc
– Service URL: https://wizybot.com
– API Communication: Plugin communicates with Wizybot servers for:
– Chat widget functionality
– Customer engagement tracking
– Cart recovery services
– WhatsApp/SMS messaging
– Analytics and reporting
Servers contacted by this plugin:
– https://api.wizybot.com — Wizybot’s own backend API. Used to link the store to the merchant’s Wizybot account and to power the chat widget (conversations, widget configuration). Contacted only after the administrator explicitly accepts the Terms & Privacy Policy on the plugin dashboard, and by the chat widget on the storefront as part of the service.
– https://fonts.googleapis.com / https://fonts.gstatic.com — Google Fonts (font families used by the chat widget), loaded from Google’s approved CDN.
If the merchant personalizes the chat widget with a custom image, that image is stored in this site’s own WordPress Media Library and served from this site’s own URL. No external media storage is contacted for it.
Subscription Required:
– Active paid subscription with Wizybot is required
– Subscription terms and pricing at wizybot.com/pricing
– Different plans available with varying features
Data Sharing:
By installing and activating this plugin, you consent to share:
– Store domain and basic shop information
– Customer interactions and conversations
– Shopping cart data
– Customer contact information
– Order information for attribution
Privacy Policy:
– Wizybot Privacy Policy: https://app.wizybot.com/privacy
– Review these documents before using this plugin
Support & Billing
For support, billing, feature requests, or account management:
– Visit wizybot.com
– Email: [email protected]
For WordPress plugin technical issues:
– Check installation instructions above
– Review FAQ section
– Contact Wizybot support for platform-related issues
Included source code (source/)
The compiled assets shipped in assets/ (main.js, dashboard.js, main.css, dashboard.css) are built from the source/ directory, which is included inside this plugin and contains all the original, human-readable frontend widget source code (React + TypeScript) together with the build configuration needed to reproduce those assets. The source/ directory is not loaded or executed at runtime; WordPress only ever loads the compiled files in assets/. It is bundled solely to satisfy the human-readable source requirement, so the shipped bundles can be independently reviewed and reproduced. Build instructions are provided below.
Main structure:
package.json: development/build dependencies and scripts.
webpack.wordpress.config.js: webpack configuration to build the WordPress bundles.
public/: CSS files copied to the plugin during the build:
ShopifyWidgetInner.css
ShopifyWidgetOutter.css
src/components/: React/TypeScript components that implement the widget and UI.
src/wordpress/: WordPress-specific entries and assets:
widget/indexWidget.wordpress.tsx
dashboard/indexDashboard.wordpress.tsx
index.wordpress.css
How to build the WordPress assets (widget + dashboard):
Install dependencies:
cd source
npm install
Create a Babel config file:
.babelrc
with the contents:
{
“presets”: [
“@babel/preset-env”,
“@babel/preset-react”,
“@babel/preset-typescript”
]
}
Build in production mode:
npm run widget-wordpress
The widget-wordpress script runs:
webpack --config webpack.wordpress.config.js --mode production
Build output:
Generated files are written to assets/ in the plugin root.
main.js, dashboard.js, main.css, dashboard.css are created.
Images and static CSS defined in webpack.wordpress.config.js are copied.
Development (watch):
npm run widget-wordpress:watch rebuilds automatically in development mode.
This source code represents the frontend widget implementation that integrates with the plugin to display the chat interface and functionality in stores.
