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. Up-sell Trio for WooCommerce

Up-sell Trio for WooCommerce

Minimalist and high-efficiency plugin under 1,000 lines of code packed with WooCommerce up-sell features: Frequently Bought Together, Out-of-stock Alt …

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

What the WordPress.org registry says about keeping Up-sell Trio for WooCommerce running.

WordPress compatibility
Tested to 6.8.6 — 2 branches behind 7.0
A branch or two behind — normal for a plugin between releases.
Last updated
10 months ago
At least 5.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.

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

Scored on how Up-sell Trio for WooCommerce is looked after — not on how many stores run it.

Solid
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 311 days ago.
WordPress compatibility
14 / 20
Tested to WP 6.8.6, 2 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
10 / 10
Provides: screenshots, description, homepage
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-02 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.

Minimalist and high-efficiency plugin under 1,000 lines of code packed with WooCommerce up-sell features: Frequently Bought Together, Out-of-stock Alternatives.

Feature: Frequently Bought Together and Product Recommendations

Generates recommended product relationships from purchase history by email address using the Action Scheduler.

Creates a short code and dynamically inserts a frequently bought together promotion offering customers a percentage discount on add-on products.

Uses real dynamically generated WooCommerce Coupons to aide with reporting and other compatibilities, thus coupons must be enabled in WooCommerce settings.

Feature: Out-of-stock Alternatives

Displays two up-sell products above the add-to-cart form on single product pages when out of stock. Converts traffic to otherwise dead end discontinued or temporarily unavailable product pages.

Where can I see examples?

  • Best Chinese Medicines

How do I configure these features?

Decisions not options! There is no settings page!

Frequently Bought Together and Product Recommendations:

Activating this plugin will insert the Frequently Bought Together section into the single product page via the WooCommerce hook woocommerce_after_single_product_summary.

If you need to insert the Frequently Bought Together feature via shortcode, such as with a page builder like Elementor, please follow this format: [ccom_fbt cross_sells="no" heading="Frequently purchased together…" heading_tag="h2"].

Cross sells feature will give preference to any products linked as cross-sells in the product settings.

Recommendations data can also be used for your Related Products by adding the following into your Code Snippets or child theme functions.php file:

add_filter( 'woocommerce_related_products', function( $related_posts, $product_id ) {
    $product = wc_get_product( $product_id );
    $recommendations = (array) $product->get_meta( 'ccom_recommendations', true );
    return array_merge( $recommendations, $related_posts );
}, 10, 2 );

Out-of-stock Alternatives:

Up-sell products configured in the WooCommerce product edit screen will be shown on out-of-stock single product pages above the empty add-to-cart form.

How is this plugin funded?

This plugin is funded by clients of Coded Commerce, LLC funding feature requests for development. When I develop useful code under GPL licensing I share it on our site as Code Snippets and in some cases package great features like these into free plugins so everybody can benefit, including the originating client via bug fixes and others’ funded feature requests.

I also welcome donations via the “Donate to this plugin” button towards the bottom of the right sidebar on the WordPress.org plugin page.

How can I bring back the Order Bumps feature?

I removed this feature in September 2025 to make room for an upcoming feature in the My Account Orders area.

You can bring it back using the free Code Snippets plugin and installing my code snippet: https://codedcommerce.com/woo/cart-and-checkout-order-bump/

How can I set the discount amount?

Use the free Code Snippets plugin and this sample code:

// FBT Multiplier (-0.1 = 10% off)
add_filter( 'ccom_fbt_multiplier', function( $multiplier ) {
    return -0.1;
} );

// My Account Buy-Again Multiplier (-0.05 = 5% off)
add_filter( 'ccom_reorder_multiplier', function( $multiplier ) {
    return -0.05;
} );

How can I disable a feature?

Use the free Code Snippets plugin and this sample code:

// To Disable Out-Of-Stock Alternatives
add_filter( 'ccom_oos_enabled', '__return_false' );

// To Disable FBT
add_filter( 'ccom_fbt_enabled', '__return_false' );

// To Disable My Account Buy-Again
add_filter( 'ccom_reorder_enabled', '__return_false' );

// Conditional Example
add_filter( 'ccom_reorder_enabled', function( $enabled ) {
    return current_user_can( 'practitioner' ) ? false : $enabled;
} );

Where do I go for help with any issues?

To report bugs, please click the Support tab, search for any preexisting report, and add yourself to it by commenting or open a new issue.

To request new compatibilities or features, please consider hiring the developer of this plugin or another developer who can provide us with code enhancements for review.

Paid premium support is also available for those looking for one-on-one help with their specific WordPress installation. Visit our website in the link above and contact us from there.

Categories
Inventory & stockCatalogue & variationsUpsell & conversion
Plugin details
Version1.9.2
Last updated2025-09-25 10:21pm GMT
Added2022-11-10
Requires WordPress6.0
Tested up to6.8.6
Requires PHP7.4

Tags on WordPress.org
out of stock
products
recommended products
upsell
woocommerce
Alternatives
Other plugins in the same categories.
Back In Stock Notifier for WooCommerce | WooCommerce Waitlist Pro
20K+ installs
4.7(121)
BrikPanel: WooCommerce Dashboard, Abandoned Cart Recovery, Google Sheets Sync, Inventory Management & Bulk Editor
700+ installs
5.0(34)
MoreConvert Wishlist for WooCommerce
9K+ installs
4.9(120)
ATUM WooCommerce Inventory Management and Stock Tracking
10K+ installs
4.7(127)
Sync Master Sheet – Product Sync with Google Sheet for WooCommerce
400+ installs
5.0(7)
WP Inventory Manager
1K+ installs
4.6(32)
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