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. PDF InvoiceX

PDF InvoiceX

WooCommerce PDF invoice plugin — auto-generate invoices, credit notes & packing slips. Email attachments, bulk download, VAT/GST support. Free.

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

What the WordPress.org registry says about keeping PDF InvoiceX running.

WordPress compatibility
Tested to 7.0.2
Tested against the WordPress branch in use today.
Last updated
1 month ago
At least 2.6 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.

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

Scored on how PDF InvoiceX 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 43 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.

PDF InvoiceX is a free WooCommerce PDF invoice plugin that automates your entire billing workflow. Generate, send, and manage PDF invoices, credit notes, and packing slips — all from within WooCommerce, with no monthly fees.

Whether you run a small shop or a high-volume store, PDF InvoiceX handles invoice numbering, VAT/GST compliance, bulk exports, and customer-facing downloads out of the box.

📄 PDF Invoices

  • Auto-generate invoices when orders reach any configured status (e.g. Processing, Completed).
  • Sequential invoice numbering with prefix, suffix, and optional yearly counter reset (e.g. 2025-000001).
  • Download or view invoices from the WooCommerce admin, My Account page, and the Thank You / order-received page.
  • Inline PDF preview — opens in a new tab without leaving the page.
  • Regenerate any invoice on demand, bypassing the cache.
  • Send Invoice to Customer directly from the order edit screen — no duplicate email sends.

📋 Credit Notes

  • Auto-generated when an order is refunded (configurable in Advanced settings).
  • Per-refund breakdown: items refunded, quantities, refund reasons, and totals.
  • Available for download from the order edit screen.

📦 Packing Slips

  • Pricing-free shipping document for warehouse use — shows product name, SKU, variant options, and quantity.
  • Ship-from and ship-to address blocks included.
  • Enable via Advanced settings; appears on order edit screen and customer My Account.

🎨 Invoice Templates

  • 4 built-in templates: Default, Modern, Classic, Colorful.
  • Live preview in the settings panel before applying.
  • Override-safe: template variables are injected at render time — no class coupling, easy to extend with custom templates via the pdfinvx_templates filter.

📧 Email Attachments

  • Attach PDF invoices to any WooCommerce transactional email — fully configurable per email type.
  • Dedicated Send Invoice to Customer button on the order edit screen.

⚡ Bulk Invoice Generation

  • Select multiple orders → Generate PDF Invoices → download as a ZIP.
  • Background processing via Action Scheduler — handles large order volumes without PHP timeouts.
  • Synchronous fallback for sites without Action Scheduler.

🧾 VAT / GST & Compliance

  • Display your store VAT or GST registration number on every invoice.
  • Optional customer VAT / GST field at checkout, stored to order meta and printed on the invoice.
  • Paper size selector: A4, Letter, or Legal.
  • WooCommerce HPOS (High-Performance Order Storage) compatible.
  • Fully translatable — includes a complete .pot file with 100+ strings.

Why PDF InvoiceX?

Most WooCommerce invoice plugins charge $49–$99/year for features like credit notes, packing slips, VAT fields, or bulk exports. PDF InvoiceX provides all of these for free, with clean code that follows WordPress and WooCommerce coding standards.

  • ✅ No subscription or licence fee
  • ✅ HPOS compatible
  • ✅ Works with WooCommerce Subscriptions
  • ✅ Action Scheduler integration for large stores
  • ✅ Plugin Check (PCP) compliant

License

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

Why am I seeing “Failed to generate PDF”?

Check the following:
– The wp-content/uploads/pdf-invoicex/ directory must be writable by the web server.
– PHP memory limit should be at least 128 MB (mPDF recommendation).
– Enable WP_DEBUG and check wp-content/debug.log for a detailed error message.

How do I create a custom invoice template?

Copy any built-in template from the plugin’s templates/ folder to your theme folder, then register it:

`php

add_filter( ‘pdfinvx_templates’, function( $templates ) {
$templates[‘my-template’] = array(
‘name’ => __( ‘My Template’, ‘pdf-invoicex’ ),
‘image’ => get_theme_file_uri( ‘pdf-invoicex/my-template.jpg’ ),
‘description’ => __( ‘Custom invoice template.’, ‘pdf-invoicex’ ),
);
return $templates;
} );
`

Then select it under WooCommerce > PDF InvoiceX > Template.

Can I attach invoices to specific WooCommerce emails?

Yes. Go to WooCommerce > PDF InvoiceX > Emails and tick the emails you want the PDF attached to (e.g. Completed Order, Processing Order).

Does it support HPOS (High-Performance Order Storage)?

Yes. The plugin is fully compatible with WooCommerce HPOS (custom order tables).

Does it work with WooCommerce Subscriptions?

Yes. Invoices are automatically generated for subscription renewal orders.

How do I generate invoices in bulk?

In WooCommerce > Orders, select the orders, choose Generate PDF Invoices from the Bulk Actions dropdown, and click Apply. A ZIP file will be downloaded (or queued in the background for large batches).

How do I reset the invoice counter?

Go to WooCommerce > PDF InvoiceX > Advanced, scroll to Invoice Numbering, enter the value in Reset Counter To, and click Apply Reset.

Categories
Checkout fields & addressInvoicing & accounting
Plugin details
Version2.0.0
Last updated2026-06-19 10:22am GMT
Added2025-05-30
Requires WordPress6.0
Tested up to7.0.2
Requires PHP7.4

Tags on WordPress.org
Billing
invoice
Packing Slip
pdf
woocommerce
Alternatives
Other plugins in the same categories.
Checkout Field Editor (Checkout Manager) for WooCommerce
400K+ installs
4.9(1,056)
Calculadora de Frete e Campos Checkout para o Brasil
5K+ installs
4.9(45)
PPOM – Product Addons & Custom Fields for WooCommerce
20K+ installs
4.4(282)
Checkout Field Manager (Checkout Manager) for WooCommerce
80K+ installs
4.5(781)
Kikote – Location Picker at Checkout & Google Address AutoFill Plugin for WooCommerce
1K+ installs
5.0(65)
Admin Columns
100K+ installs
4.9(1,650)
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