
內容簡介
Visualwebs AI Cloud Suite 外掛為您的 WordPress 網站帶來強大的 AI 功能,適合電子商務、部落格及任何希望利用 AI 提升用戶互動和洞察力的網站。它提供聊天機器人、語意搜尋及動態定價等功能,幫助您優化產品銷售。
【主要功能】
• 可自訂的 AI 聊天機器人整合
• 語意搜尋提升搜尋結果
• 機器學習小工具進行預測分析
• WooCommerce 整合的產品相關 AI 功能
• AI 驅動的動態定價幫助設定最佳售價
• 自動化產品、頁面及銷售數據的餵送生成系統
外掛標籤
開發者團隊
原文外掛簡介
The Visualwebs AI Cloud Suite plugin brings powerful AI capabilities to your WordPress site. It includes features like:
– Chatbot Integration: Embed a customizable chatbot powered by AI.
– Semantic Search: Enhance search functionality with semantic understanding.
– Machine Learning Widgets: Add predictive analytics and other AI-driven widgets to your site.
– New! SmartPricing AI: Added AI-powered dynamic pricing to help you set the best product sale price and maximize WooCommerce profits.
– WooCommerce Support: Seamlessly integrates with WooCommerce for product-related AI features.
– SOS Inventory Sync (Pro/Enterprise): Supports SOS stock and order sync integration for inventory and order data flows on Pro and Enterprise plans.
– Enterprise Security: Private REST API endpoints with X-Store-API-Key authentication protect your store data from unauthorized access.
Dependencies:
– Requires the Redux Framework plugin for managing settings.
– Requires the WooCommerce plugin for e-commerce-related AI features.
This plugin is ideal for e-commerce, blogs, and any site looking to leverage AI for better user engagement and insights.
Free account available: You can start with a free account (limited usage) and upgrade later if needed.
Features
AI-powered chatbot with customizable settings.
Semantic search for improved search results.
Machine learning widgets for analytics and predictions.
WooCommerce integration for product-related AI features.
Admin panel for managing semantic search queue and chatbot settings.
AI-powered dynamic pricing to help you set the best product sale price and maximize WooCommerce profits.
Integration token management for secure SaaS communication (SmartPricing predictions import).
REST API endpoints for AI-related operations.
Feed Generation System: Automated feed generation for products, pages, sales data, and insights with hourly/daily cron jobs.
Manual Feed Generation: Admin interface with buttons to trigger feed generation on demand.
WP-CLI Support: Full command-line interface for feed generation – ideal for automation, deployment scripts, and CI/CD pipelines.
🔒 Private REST Feed Endpoints: All feed APIs require X-Store-API-Key authentication – no public access to sensitive store data.
Enterprise Security: Feed endpoints are completely private, preventing unauthorized data discovery or scraping of your store information.
WP-CLI Commands
The plugin includes comprehensive WP-CLI support for automated feed generation. These commands are perfect for integrating into deployment scripts, cron jobs, or CI/CD pipelines.
Available Commands:
wp visualwebs-ml generate-product-feed
Generates the product catalog feed (product_feed.json) containing all WooCommerce products with full details including images, prices, categories, and attributes. This feed is used by the AI semantic search and chatbot features.
wp visualwebs-ml generate-page-feed
Generates the page and post content feed (page_feed.json) containing all published pages and posts. This feed enables the chatbot to answer questions about your site’s content.
wp visualwebs-ml generate-sales-feed
Generates the sales data feed (sales_feed.json) containing historical order information aggregated by date. This feed powers the SmartPricing AI training and prediction models.
wp visualwebs-ml generate-insights-feed
Generates the insights dashboard feed (insights_feed.json) containing sales statistics, revenue data, top products, and other KPIs. This feed powers the SaaS dashboard widgets.
wp visualwebs-ml generate-all-feeds
Generates all four feeds in sequence. This is the recommended command for scheduled tasks or when you need to refresh all data at once.
Usage Examples:
`bash
Generate a single feed
wp visualwebs-ml generate-product-feed
Generate all feeds at once
wp visualwebs-ml generate-all-feeds
Schedule via cron (example: every 6 hours)
0 */6 * * * /usr/local/bin/wp visualwebs-ml generate-all-feeds –path=/var/www/html
Use in deployment scripts
cd /var/www/html && wp visualwebs-ml generate-product-feed
Remote execution (if using wp-cli remotely)
wp @production visualwebs-ml generate-all-feeds
`
Integration with Cron:
Feeds are automatically generated via WordPress cron:
– Product feed: Hourly (keeps semantic search up-to-date)
– Page feed: Daily at 2:00 AM
– Sales feed: Daily at 3:00 AM
– Insights feed: Daily at 3:00 AM
You can disable WordPress cron (DISABLE_WP_CRON) and use WP-CLI commands with system cron for better reliability and performance in production environments.
Security Note:
All generated feeds are stored locally in wp-content/visualwebs-ml-private/ directory (.htaccess protected) and are only accessible via authenticated REST API endpoints. The feeds are NOT publicly accessible – they require a valid X-Store-API-Key header to prevent unauthorized data discovery, scraping, or exposure of sensitive business information.
Trial
You can try Visualwebs AI Cloud Suite with a free account before subscribing.
Get your trial here
Demo
We offer an online demo for all platforms on our product page. Please visit this link
Does this plugin work with WooCommerce?
Yes, the plugin integrates seamlessly with WooCommerce, providing AI-powered features for products and categories.
How do I manage the semantic search queue?
You can manage the semantic search queue under AI Cloud Suite > Semantic Queue in the WordPress admin panel.
Are there any web API endpoints available to build a custom app?
Yes, there are REST API endpoints for the same AI-related operations the plugin offers. Refer to the documentation here
What is the Integration Token and how do I use it?
The Integration Token is a secure authentication mechanism that allows the SaaS platform to send SmartPricing AI predictions to your WordPress store. To use it:
1. Go to AI Cloud Suite > Integration Token in WordPress admin
2. Click Generate New Token to create a secure token
3. Copy the generated token
4. Paste it in your SaaS Dashboard under Store Settings > WordPress Integration Token
This is similar to how Magento handles integration credentials. The token is separate from your API Key – the API Key is used for WordPress-to-SaaS communication (feeds, chatbot), while the Integration Token is used for SaaS-to-WordPress communication (price predictions).
How do I generate feeds manually?
You can generate feeds in three ways:
1. Admin Interface: Go to AI Cloud Suite > Feed Generation and click the buttons to generate individual feeds or all feeds at once.
2. WP-CLI Commands: Use command-line interface for automation (see “WP-CLI Commands” section for detailed documentation):
– wp visualwebs-ml generate-product-feed – Generate product feed
– wp visualwebs-ml generate-page-feed – Generate page/content feed
– wp visualwebs-ml generate-sales-feed – Generate sales data feed
– wp visualwebs-ml generate-insights-feed – Generate insights feed
– wp visualwebs-ml generate-all-feeds – Generate all feeds at once
3. Automated Cron Jobs: Feeds are generated automatically (products hourly, others daily at 2-3 AM).
How do I access feed data via REST API?
Feeds are available through authenticated REST API endpoints:
– /wp-json/visualwebs-ml/v1/feed/products – Product catalog feed
– /wp-json/visualwebs-ml/v1/feed/pages – Pages and posts feed
– /wp-json/visualwebs-ml/v1/feed/sales – Sales data feed (for SmartPricing AI)
– /wp-json/visualwebs-ml/v1/feed/insights – Dashboard insights feed
Security: All endpoints require the X-Store-API-Key header for authentication. You can find your API key in AI Cloud Suite > Settings. Without a valid API key, access is denied with a 401 Unauthorized response. This prevents unauthorized data discovery and protects sensitive store information.
Are the feed endpoints secure?
Yes. All feed REST API endpoints are completely private and require authentication via the X-Store-API-Key header. This is a critical security feature that prevents:
– Unauthorized access to product catalogs and pricing information
– Scraping of customer order data and sales statistics
– Discovery of site content and page structure
– Exposure of business insights and KPI data
The feeds are only accessible to authenticated SaaS platform requests, ensuring your store data remains confidential.
License
This plugin is licensed under the GPLv2 or later. See the GNU General Public License for details.
Documentation
Documentation
