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 …
Next Milestone 10
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Rank Changes
Downloads Growth
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
Tracked Keywords
Showing 0 of 0| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| No keyword data available yet. | ||||
Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 1.9.2
- Last Updated
- Sep 26, 2025
- Requires WP
- 6.0+
- Tested Up To
- 6.8.3
- PHP Version
- 7.4 or higher
- Author
- Sean Conklin
Support & Rating
- Rating
- ☆ ☆ ☆ ☆ ☆ 0
- Reviews
- 0
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowSimilar Plugins
Frequently Asked Questions
Common questions about Up-sell Trio for WooCommerce
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;
} );
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.