This is an info Alert.
x402 Logo
  • Product
    • Become Agent-Ready
      • Merchants
        Agentic Commerce — list your store across ChatGPT, Gemini, Claude & Perplexity
      • Publishers
        Monetize your content when AI agents read, cite, or train on it
      • SaaS Companies
        Treat AI agents as first-class customers with agent-priced checkout
    • Monetize
      • Monetize MCP Server
        Charge per call on any MCP server in 2 minutes
      • Monetize AI Agents
        Turn n8n, Zapier, Activepieces workflows into revenue
      • Agent Feed
        Pay-per-query access to licensed publisher content for your agents
  • Resources
    • xpay Ecosystem
      • xpay✦ Tools
        1,000+ pay-per-use tools for your AI agents
      • Agent-Ready SaaS Index
        25,481 SaaS scored on agent-buyability
      • SaaS Pricing Database
        Pricing pages indexed across 1,000+ categories
      • Shopify Apps Directory
        Every Shopify app, with its full review history
      • WooCommerce Plugins Directory
        Every WooCommerce plugin, scored on how well it is maintained
      • GitHub
        Open source repositories
    • Agent Building
      • Agent Frameworks
        AI frameworks for building multi-agent systems
      • x402 Integration
        AI frameworks with x402 payment integration
      • Networks
        Blockchain networks supporting x402
    • Company
      • About xpay✦
        Our mission, products, and protocols
      • Blog
        Latest insights and updates
      • Docs
        Complete xpay documentation
  • Pricing
  • Blog
  • Docs
Get Started
  1. xpay✦ Commerce

  2. Directory

  3. WooCommerce plugins

  4. MIPL Multistore Sync for WooCommerce. Sync Products, Stock and Orders.

MIPL Multistore Sync for WooCommerce. Sync Products, Stock and Orders.

Synchronize products, stock, orders, customers, coupons and reviews seamlessly across multiple WooCommerce stores.

200+ active installs
4.4
(7 ratings)
Free on WordPress.org
View on WordPress.orgSupport forum
Will this break my store?

What the WordPress.org registry says about keeping MIPL Multistore Sync for WooCommerce. Sync Products, Stock and Orders. running.

WordPress compatibility
Tested to 7.0.2
Tested against the WordPress branch in use today.
Last updated
1 month ago
At least 11.2 releases a year since launch. WordPress.org only lists versions still available for download, so the real number may be higher.
Requires PHP
7.4
Your host must be running at least this version.
Requires WordPress
5.1
Requires other plugins
woocommerce
These must be installed and active first.
Contributors
1
A single maintainer. Worth knowing if the plugin is load-bearing for your store.

200+ active installsWordPress.org reports installs in bands, not exact counts.
Maintenance & trust

Scored on how MIPL Multistore Sync for WooCommerce. Sync Products, Stock and Orders. is looked after — not on how many stores run it.

94

out of 100
Well maintainedSome ratings or support history.

Maintenance
35 / 35
Updated 32 days ago.
WordPress compatibility
20 / 20
Tested to WP 7.0.2 (current).
Support responsiveness
Not enough data
Only 0 support thread(s) — not enough to judge.
Merchant satisfaction
10 / 15
4.4/5 across 7 rating(s).
Listing transparency
10 / 10
Provides: screenshots, description, homepage
1 of 5 measures had too little evidence to score. They are left out of the total rather than counted as zero — otherwise a plugin would be marked down for being small rather than for being poorly kept.Measured 2026-08-01 from the WordPress.org plugin registry.
Ratings

4.4

7 ratings
5★6
4★0
3★0
2★0
1★1
Every rating WordPress.org holds for this plugin, not a sample. Written reviews live in the plugin's WordPress.org reviews forum.

MIPL WC Multisite Sync connect your main store to sub store, keeping products, stock, orders, customers, coupons, and reviews updated automatically.
Install only on your main store, connect the sub site with its API details, and start syncing in minutes.
No plugin is needed on the sub site.
Perfect for businesses, agencies, or anyone managing two stores with less hassle.

Demo Access

  • Main Site: Demo Login
  • Sub Site: Demo Login

Features

  • Main-to-Sub Store Sync – Manage and sync your main store with a single connected WooCommerce sub store.
  • Install Only on Main Store – No need to install anything on the sub store. Keep it clean and simple.
  • Easy Remote Connection – Connect your sub store securely using its login/API details in just a few steps.
  • No WordPress Multisite Required – Works on completely separate, standalone WooCommerce stores.
  • Sync Products with Customizable Options – Choose exactly what to sync: stock, categories, attributes, prices, images, and more.
  • Sync Stock Levels – Prevent overselling by keeping inventory synchronized in real time.
  • Sync Orders – Automatically send orders placed on the sub store to the main store for centralized management.
  • Sync Customers – Combine customer data from your sub store for a unified, searchable database.
  • Sync Coupons & Discounts – Instantly apply coupon codes and discounts across both stores.
  • Sync Reviews – Keep product reviews consistent and trustworthy across your two stores.
  • WooCommerce API Integration – Secure, reliable synchronization using WooCommerce’s REST API.
  • Sync Logs – View detailed logs of synchronization activities for easy tracking and troubleshooting.
  • Automatic & Manual Sync – Choose real-time automation or manual syncing based on your needs.

Why Choose?

  • Centralized, Main-to-Sub Store management saves time and reduces complexity.
  • No need for WordPress Multisite—works with any standalone WooCommerce site.
  • Easy setup with the plugin installed only on the main store.
  • Effortlessly connect your sub site using secure login/API details.
  • Improve accuracy with real-time syncing of products, stock, orders, customers, coupons, and reviews.
  • Prevent overselling with automatic inventory updates.
  • Perfect for testing multi-store syncing before upgrading to the full version.

This plugin is the ideal solution for businesses managing two WooCommerce stores, making store management easier, more accurate, and more efficient. Get started today and keep your stores perfectly in sync—free!

Links

  • Plugin Page
  • Documentation & Support
  • Pro Version

Is getting SSL error?

Confirm SSL is enabled on both sites for secure data transfer. Without SSL, API key access will be ineffective. For testing on localhost or development environments, use self-signed SSL. Include the following code in the functions.php or main plugin file on both sites.

add_filter('http_request_args', 'wp_wc_allow_unsafe_url_for_testing', 0, 1);
function wp_wc_allow_unsafe_url_for_testing($args) {
    $args['sslverify'] = false;
    $args['reject_unsafe_urls'] = false;
    return $args;
}

Please replace ‘development’ with the actual value that indicates your development environment if your setup uses a different constant or configuration.

Remember to remove or adjust this code before deploying your website to a live production environment, as using self-signed or invalid SSL certificates in production can expose your site and users to security threats.

How To Fix the “cURL Error 28: Connection Timed Out”

Increase the HTTP request timeout,
Place this code snippet in your theme’s functions.php file, If you need a longer timeout, you can adjust the value accordingly.

// Increase HTTP request timeout
function custom_http_request_timeout( $timeout ) {
    $timeout = 60; // in seconds
    return $timeout;
}
add_filter( 'http_request_timeout', 'custom_http_request_timeout' );

If you’re still encountering errors after increasing the timeout, follow the troubleshooting steps you mentioned:
1. Check Firewall settings in Security Plugin: Ensure that your security plugin is not blocking outgoing requests.
2. Check site SSL Certificate: Verify that your SSL certificate is valid and properly configured.
3. Check the cURL version: Make sure cURL is installed and updated to the latest version on your server.
4. Check the PHP memory limit: Ensure that your PHP memory limit is sufficient for the operations you’re performing.

Categories
Order managementCatalogue & variations
Plugin details
Version1.4.8
Last updated2026-06-30 1:06pm GMT
Added2023-10-27
Requires WordPress5.1
Tested up to7.0.2
Requires PHP7.4

Tags on WordPress.org
orders
products
sync
synchronization
woocommerce
Alternatives
Other plugins in the same categories.
Order On Mobile for WooCommerce
2K+ installs
4.9(66)
PiWeb Cancel order / Refund request for WooCommerce
2K+ installs
4.8(38)
Return Refund and Exchange For WooCommerce
4K+ installs
4.7(123)
Order Tracking – WordPress Status Tracking Plugin
3K+ installs
4.6(73)
Filter Orders by Product for WooCommerce
4K+ installs
4.7(15)
Moloni
2K+ installs
4.8(6)
x402 Logo

The agent-readiness stack for the AI shopping era — helping merchants, publishers and SaaS companies get discovered, cited and transacted with by ChatGPT, Perplexity, Claude, Gemini and the custom shopping agents underneath them.

CompanyAgentically Inc. (d/b/a xpay✦)1875 Mission St, Ste 103San Francisco, CA 94103, United Stateslegal@xpay.sh · privacy@xpay.sh
or ask your AI app
Company
About xpayAgency PartnersGitHubDiscordllms.txt
DevelopersDocumentationAPI ReferenceSDKs & LibrariesQuickstart GuideOpenAPI Spec
Stay Updated
Occasional product updates and agent-readiness playbooks from xpay (Agentically Inc.) — typically a couple of emails a month. Double opt-in: we email you a link to confirm before sending anything, and every email has one-click unsubscribe.
Social
  • For Publishers
    • News
    • Finance
    • Dev / Tech
    • Travel
    • View all verticals
  • Agent Feed
    • AI Search Engines
    • RAG Builders
    • Browser Agents
    • Vertical Research
    • Browse full catalog
  • Agent-Ready Index
    • SaaS Pricing Database
    • Agent-Ready SaaS Index
    • Verified band
    • AI & ML
    • Sales & CRM
  • Products
    • Pricing Widget
    • Monetize MCP Server
    • Paywall
    • Smart Proxy
    • Monetize AI Agents
    • xpay x402 Facilitator
  • Agentic Economy
    • Timeline
    • Resources
    • Manifesto
    • Stack
  • Agentic Commerce
    • Get listed
    • ChatGPT Ads
    • How ChatGPT Ads work
    • ChatGPT Ads · Apparel
    • ChatGPT Ads · Health & Beauty
    • xpay Listings · Amazon + Google
    • Pricing
    • Free audit
    • Shopify
    • WooCommerce
    • Apparel & Accessories
    • Health & Beauty
    • Overview
  • Commerce Index
    • Shopify apps directory
    • Agentic Commerce Ready Index
    • Methodology
    • Pet brands · WooCommerce
    • Pet brands · Shopify
  • Marketplace
    • 🛍️ xpay.deals — agentic storefront for deals
  • Protocols
    • Overview
    • x402
    • MPP
    • UCP
    • ACP
    • AP2
    • TAP
    • A2A
  • Agent Frameworks
    • Overview
    • LangChain
    • CrewAI
    • Claude MCP
    • AutoGPT
    • LangChain vs Mastra
    • LangGraph vs Pydantic AI
  • Company
    • About xpay
    • Blog
    • Docs
    • GitHub
  • Free prompts
    • Ecommerce prompts
    • Email marketing prompts
    • Product description prompts
    • Facebook ad prompts
    • Skincare prompts
    • Supplement prompts
    • Wine prompts
    • Electronics prompts

© 2025 Agentically Inc. All rights reserved.
Privacy PolicyTerms of UseAcceptable Use Policy