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. COD Express Checkout

COD Express Checkout

Add a customizable one-click COD checkout form to product pages. Skip cart, skip checkout, more sales.

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

What the WordPress.org registry says about keeping COD Express Checkout running.

WordPress compatibility
Tested to 6.9.5 — 1 branch behind 7.0
Tested against the WordPress branch in use today.
Last updated
7 months ago
At least 3.4 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
6.0
Contributors
1
A single maintainer. Worth knowing if the plugin is load-bearing for your store.

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

Scored on how COD Express Checkout is looked after — not on how many stores run it.

Mixed signals
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
26 / 35
Updated 214 days ago.
WordPress compatibility
14 / 20
Tested to WP 6.9.5, 1 branch(es) behind.
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.

COD Express Checkout adds a streamlined, one-click checkout form directly beneath the product price on WooCommerce single product pages. This form appears only when Cash on Delivery (COD) is enabled as a payment method, allowing customers to bypass the traditional cart → checkout flow entirely.

Perfect for COD-Heavy Markets

Cash on Delivery dominates in specific regions:

  • Middle East: 60-80% of e-commerce transactions are COD
  • South Asia (India, Pakistan, Bangladesh): 50-70% COD preference
  • Southeast Asia: 40-60% COD usage
  • Latin America: Growing COD adoption

Key Features

  • ⚡ Express Checkout Form – Displays directly on product page
  • 🎯 COD-Specific – Only shows when COD payment is enabled
  • 📱 Mobile Optimized – Responsive design for all devices
  • ⚙️ Fully Configurable – Toggle fields, customize labels, reorder fields
  • 🔄 Variable Products – Full support for variable products with variations
  • 📝 Order Notes – Optional customer notes field
  • 🔒 Secure – Nonce verification, input sanitization, rate limiting
  • 🌐 Translation Ready – Full i18n support
  • 🎨 Theme Agnostic – Works with any WordPress theme
  • 🔗 Developer Friendly – Extensive hooks and filters
  • 📍 Shortcode Support – Place the form anywhere on your site

How It Works

  1. Customer lands on a product page
  2. Sees the express checkout form below the price
  3. For variable products, selects their preferred variation
  4. Fills in name, phone, and address
  5. Clicks “Order Now – Pay on Delivery”
  6. Order is created instantly via AJAX
  7. Customer sees confirmation message

No cart page. No checkout page. Just one form, one click!

Conversion Benefits

  • Reduce cart abandonment by 50%+
  • Capture impulse buyers at peak buying intent
  • Decrease checkout time from 3-5 minutes to under 60 seconds
  • Improve mobile conversion rates with simplified flow

Developer Documentation

Available Hooks

Actions:

cod_express_checkout_loaded - Fires after plugin is fully loaded
cod_express_checkout_before_form - Before form renders
cod_express_checkout_after_form - After form renders
cod_express_checkout_before_order_create - Before order creation
cod_express_checkout_after_order_create - After order creation
cod_express_checkout_emails_sent - After order emails sent

Filters:

cod_express_checkout_enabled_fields - Modify enabled fields
cod_express_checkout_button_text - Change button text
cod_express_checkout_form_title - Change form title
cod_express_checkout_order_status - Set order status (default: processing)
cod_express_checkout_billing_address - Modify billing address
cod_express_checkout_shipping_address - Modify shipping address
cod_express_checkout_rate_limit - Adjust rate limit (default: 5 per minute)

Example: Add Custom Field

add_filter( 'cod_express_checkout_available_fields', function( $fields ) {
    $fields['custom_field'] = array(
        'label'    => __( 'Custom Field', 'your-textdomain' ),
        'type'     => 'text',
        'default'  => false,
        'required' => false,
    );
    return $fields;
});

Example: Change Order Status

add_filter( 'cod_express_checkout_order_status', function( $status, $order ) {
    return 'on-hold'; // Instead of 'processing'
}, 10, 2 );

Example: Add Custom Validation

add_action( 'cod_express_checkout_validate_input', function( $data ) {
    if ( strlen( $data['billing_phone'] ) < 10 ) {
        throw new Exception( __( 'Phone number must be at least 10 digits.', 'your-textdomain' ) );
    }
});

Requirements

  • WordPress 6.0 or higher
  • WooCommerce 8.0 or higher
  • PHP 7.4 or higher
  • Cash on Delivery payment method enabled

Support

For support, please:

  1. Check the FAQ section above
  2. Visit the WordPress.org support forum
  3. Report bugs or request features on the support forum

Privacy Policy

COD Express Checkout respects your privacy:

  • No data is sent to external servers
  • All order data is stored in your WooCommerce database
  • The plugin uses WooCommerce’s native order system
  • On uninstall, all plugin settings are removed (order data is preserved)

Credits

  • Developed by oughoudane
  • Built with love for COD-heavy markets
  • Uses WooCommerce APIs for native integration
  • Icons from WordPress Dashicons

Does this plugin require WooCommerce?

Yes, COD Express Checkout requires WooCommerce 8.0 or higher to function.

Will the form show for all payment methods?

No, the express checkout form only displays when the Cash on Delivery (COD) payment method is enabled in WooCommerce.

Does it work with variable products?

Yes! The plugin fully supports variable products. Customers can select their preferred variation (size, color, etc.) and the form automatically captures the correct variation and price.

Can I customize which fields are shown?

Yes! Go to WooCommerce → COD Express and you can:
* Enable/disable each field
* Mark fields as required or optional
* Customize field labels
* Reorder fields via drag-and-drop

Is it compatible with my theme?

COD Express Checkout is designed to be theme-agnostic and should work with any properly coded WordPress theme. The form inherits your theme’s styling while maintaining its own layout.

Can I override the form template?

Yes! Copy the template file from:
plugins/cod-express-checkout/templates/express-checkout-form.php
to:
yourtheme/cod-express-checkout/express-checkout-form.php
and customize as needed.

How do I translate the plugin?

The plugin is fully translation-ready. Use any translation plugin like Loco Translate, or add translations to:
wp-content/languages/plugins/cod-express-checkout-{locale}.mo

Is it GDPR compliant?

Yes. The plugin:
* Does not send data to external servers
* Uses WooCommerce’s standard order storage
* Provides cleanup on uninstall
* Collects only necessary information

Can I place the form anywhere on my site?

Yes! Use the shortcode to place the express checkout form on any page, post, or widget area:

[cod_express_checkout product_id=”123″]

Parameters:
* product_id – (Required if not on product page) The WooCommerce product ID
* button_text – (Optional) Override the button text

Examples:
[cod_express_checkout product_id=”123″]
[cod_express_checkout product_id=”123″ button_text=”Buy Now!”]

This works with any page builder (Elementor, Gutenberg, Divi, etc.) – just add a shortcode widget/block!

Can developers extend this plugin?

Yes! The plugin provides numerous hooks and filters:

Actions:
* cod_express_checkout_before_form
* cod_express_checkout_after_form
* cod_express_checkout_before_order_create
* cod_express_checkout_after_order_create

Filters:
* cod_express_checkout_enabled_fields
* cod_express_checkout_button_text
* cod_express_checkout_order_status

Categories
Local & alternative paymentsCheckout
Plugin details
Version1.0.0
Last updated2025-12-30 6:00am GMT
Added2025-12-30
Requires WordPress6.0
Tested up to6.9.5
Requires PHP7.4

Tags on WordPress.org
cash on delivery
checkout
cod
express checkout
woocommerce
Alternatives
Other plugins in the same categories.
PagBank / PagSeguro Connect para WooCommerce
4K+ installs
5.0(62)
PiWeb Disable payment method / Partial payment for WooCommerce
4K+ installs
5.0(38)
Virtuaria PagBank / PagSeguro for WooCommerce
1K+ installs
4.8(25)
Direct Payments for WooCommerce – Bank Transfer, Mobile Money, Crypto and Peer-to-Peer (P2P) Payments
800+ installs
5.0(10)
Deposits & Partial Payments for WooCommerce
5K+ installs
5.0(108)
Sublium Subscriptions – Subscriptions for WooCommerce – Recurring Payments, Subscription Plans & Installments
500+ installs
5.0(5)
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