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. RIACO Autocomplete Orders for WooCommerce

RIACO Autocomplete Orders for WooCommerce

Automatically complete WooCommerce orders based on product types and order statuses. Save time and streamline your order fulfillment process.

10+ active installsFree on WordPress.org
View on WordPress.orgSupport forum
Will this break my store?

What the WordPress.org registry says about keeping RIACO Autocomplete Orders for WooCommerce running.

WordPress compatibility
Tested to 7.0.2
Tested against the WordPress branch in use today.
Last updated
2 months ago
At least 4.0 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.6
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.

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

Scored on how RIACO Autocomplete Orders for WooCommerce is looked after — not on how many stores run it.

Well maintained
Not enough public feedback to put a confident number on this one. Little public feedback — score rests mostly on release activity. What we can see is below.

Maintenance
35 / 35
Updated 51 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
Not enough data
No ratings yet.
Listing transparency
7 / 10
Provides: screenshots, description
2 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

No one has rated this plugin on WordPress.org yet. That is a statement about the ratings page, not about the plugin — plenty of well-kept plugins never collect them.

RIACO Autocomplete Orders for WooCommerce helps store owners streamline order management by automatically completing WooCommerce orders based on specific product types and order statuses.

If you sell virtual, downloadable, or digital products, or if you want to automatically fulfill certain types of orders without manual intervention, this plugin is for you.

Features

Automatic Order Completion

  • Automatically completes orders when all products match the allowed types (virtual, downloadable, simple, variable, grouped, or external products).
  • Triggered by specific WooCommerce order statuses (e.g., “processing” or “on-hold”).

Logging & Debugging

  • Adds internal logs for completed orders, including:
    • Which rules triggered the completion
    • Timestamp and trigger status
  • Easily review why an order was autocompleted.

Admin Controls

  • Enable or disable the autocomplete functionality via plugin settings.
  • Fully translatable and compatible with multilingual stores.
  • Remove all plugin data (settings & logs) upon uninstall for a clean database.

Developer Friendly

  • Uses apply_filters() and do_action() hooks to extend behavior.
  • Includes a completion action hook:

    do_action( 'riaco_ao_order_autocompleted', $order, $status_triggered, $matched_rules );
    
  • Filter the log messages, completion note, and rule behavior to integrate with other plugins or custom workflows.

How It Works

  1. Select which order statuses should trigger the autocomplete check.
  2. Choose which product types are eligible for automatic completion.
  3. When an order reaches a trigger status:
    • The plugin checks all products in the order.
    • If they all match the allowed types, then the order is automatically marked as “Completed”.
    • A log entry is stored with the rules that triggered the completion.

Use Cases

  • Digital Products:
    If you sell eBooks, downloadable files, or online courses, your customers can receive their orders instantly without manual approval.

  • Instant Fulfillment for Specific Products:
    Mark orders as completed right after payment if all products are simple or virtual, reducing admin overhead.

  • Dropshipping or External Fulfillment:
    If fulfillment happens outside WooCommerce, you can auto-complete to signal the order is processed.

  • Reduce Support Tickets:
    Customers instantly see their order as completed, reducing “Where is my order?” requests.

  • Event Registrations or Subscriptions:
    Automatically complete free or pre-paid event registrations without manual intervention.

Settings Overview

After activation, visit:

WooCommerce > Settings > Autocomplete Orders

Available options:

  • Enable Autocomplete
    Toggle the plugin functionality on/off.

  • Trigger Statuses
    Select one or more order statuses to run the autocomplete check.

  • Product Type Filters
    Restrict autocomplete to orders containing only the selected product types.

  • Logs Section
    Review completed order logs and which rules were triggered.

Logging & Data Handling

  • Logs are stored in a custom post type for tracking which rules triggered completion.
  • Matched rules are stored as post meta on the order.
  • Uninstall Behavior:
    When the plugin is deleted from WordPress:

    • All settings are removed.
    • All logs are deleted.
    • Your database is left clean.

Developer Hooks

Developers can customize and extend the plugin via filters and actions:

Actions

  • riaco_ao_order_autocompleted
    Fires when an order is automatically completed.
    do_action( ‘riaco_ao_order_autocompleted’, $order, $status_triggered, $matched_rules )

Filters

  • riaco_should_autocomplete_order
    Filter to allow extending the autocomplete logic.
    apply_filters( ‘riaco_should_autocomplete_order’, $should_autocomplete, $order, $status_to, $matched_rules )

  • riaco_ao_completion_note
    Allow customization of the internal admin note.
    apply_filters( ‘riaco_ao_completion_note’, esc_html__( ‘Order autocompleted by RIACO Autocomplete Orders plugin.’, ‘riaco-autocomplete-orders’ ))

  • riaco_autocomplete_orders_rules
    Filter the rules used to determine if an order should autocomplete.
    apply_filters( ‘riaco_autocomplete_orders_rules’, $rules, $order )

  • riaco_autocomplete_trigger_statuses
    Filter the list of allowed trigger statuses.
    apply_filters( ‘riaco_autocomplete_trigger_statuses’, $trigger_statuses, $status_to )

  • riaco_ao_log_postarr
    Filter the post array before inserting the log entry.
    apply_filters( ‘riaco_ao_log_postarr’, $postarr, $order, $details, $status_triggered, $note )

  • riaco_autocomplete_orders_settings
    Filter the settings array for the Autocomplete Orders plugin.
    apply_filters( ‘riaco_autocomplete_orders_settings’, $settings )

  • riaco_autocomplete_order_statuses
    Filter the list of order statuses available for autocomplete triggers.
    apply_filters( ‘riaco_autocomplete_order_statuses’, wc_get_order_statuses() )

  • riaco_autocomplete_orders_product_type_options
    Filter the product type options for RIACO autocomplete settings.
    apply_filters( ‘riaco_autocomplete_orders_product_type_options’, $options )

Uninstallation

When uninstalled via the WordPress Plugins screen:

All settings and logs are deleted.

No data is left in the database.

Roadmap

  • Premium version with extended conditions

License

This plugin is licensed under the GPLv2 or later. See LICENSE for more details.

Can I autocomplete only specific product types?

Yes. You can configure which product types should allow automatic completion. The plugin will autocomplete an order only if all products in the order match one of the allowed types.

Will this complete physical product orders?

If all products in the order meet the type criteria (e.g. simple product), the order will be marked as completed.

Does this plugin work with all payment gateways?

Yes, the plugin is gateway-agnostic. However, you should only enable autocomplete on statuses that are safe (e.g., after payment is complete).

Categories
Search & filteringOrder management
Plugin details
Version1.0.2
Last updated2026-06-11 1:22pm GMT
Added2025-08-07
Requires WordPress5.6
Tested up to7.0.2
Requires PHP7.4

Tags on WordPress.org
autocomplete
autocomplete-orders
downloadable
orders
woocommerce
Alternatives
Other plugins in the same categories.
Filter Everything — WordPress & WooCommerce Filters
50K+ installs
4.6(146)
Relevanssi – A Better Search
100K+ installs
4.8(405)
Better Post & Filter Widgets for Elementor
3K+ installs
5.0(18)
Ivory Search – WordPress Search Plugin
100K+ installs
4.9(1,557)
Product Table & List Builder For WooCommerce
10K+ installs
4.9(251)
WP Fastest Site Search
100+ installs
5.0(27)
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