A powerful WordPress/WooCommerce plugin that adds advanced product bundling with personalization features, real-time preview overlays, and smart pricing.
- Smart Pricing Display: Shows original total price, custom bundle price, and auto-calculated discount percentage
- Nested Cart Display: One bundle line item with individual products shown as indented sub-items
- Personalization Support: Each product in the bundle gets its own personalization options
- Custom Product Type: Dedicated "Product Bundle" type in WooCommerce
- Real-time Pricing Calculator: Auto-calculates discounts as you configure bundles in admin
- Real-time Preview Overlay: Interactive preview on product images
- Text Personalization: Customers can add custom text (max 50 characters)
- Visual Preview Modal: Shows personalized product with overlay text
- Disclaimer Notice: "This is an embroidered product - image is for visualization purposes"
- Works Everywhere: Compatible with both bundle products and individual products
- Font Selection: (Coming soon - 3 font options)
- Nested Display: Bundle items shown with proper hierarchy
- Personalization Display: Custom text displayed for each personalized product
- Discount Badges: Clear savings indicators throughout
- Order Processing: Personalization data saved to orders
- CartFlows Compatible: Seamless integration with CartFlows checkout pages
- WooCommerce: Full compatibility with standard WooCommerce checkout
- CartFlows: Dedicated integration layer for CartFlows checkout pages
- Personalization displays in checkout review
- Order bumps support with personalization
- Custom checkout templates fully supported
- Third-party Themes: Works with most WooCommerce-compatible themes
- Page Builders: Compatible with Elementor, Divi, and other popular builders
- Standalone Plugin: Hooks into WooCommerce without modifying core files
- Update Safe: Works independently, won't break on WordPress/WooCommerce updates
- jQuery Based: Uses WordPress's built-in jQuery (no external dependencies)
- Responsive Design: Works on all devices
- Hostinger Compatible: Works on standard WordPress hosting
- Download the plugin as a ZIP file
- Go to WordPress Admin → Plugins → Add New
- Click "Upload Plugin"
- Choose the ZIP file and click "Install Now"
- Click "Activate Plugin"
- Download/clone this repository
- Upload the
advanced-bundle-systemfolder to/wp-content/plugins/ - Go to WordPress Admin → Plugins
- Find "Advanced Bundle System" and click "Activate"
- WordPress 5.8 or higher
- WooCommerce 6.0 or higher
- PHP 7.4 or higher
- Go to Products → Add New in WordPress admin
- Enter product name and details
- In Product Data panel, select Product Bundle from the dropdown
- Go to Bundle Products tab:
- Search and select products to include in the bundle
- Enable personalization if desired
- In General tab:
- Enter your custom Bundle Price
- View the pricing summary showing original total, bundle price, and discount %
- Publish the product
- Edit any simple product
- In Product Data → General tab
- Check Enable Personalization
- Save the product
On Product Page:
- Customers see bundle contents with individual product images and prices
- Discount badge shows percentage saved
- Personalization fields appear for each product (if enabled)
- "Preview Personalization" button opens real-time preview modal
In Cart:
- Bundle shown as main line item
- Individual products displayed as nested sub-items
- Personalization text shown for each customized product
- Discount percentage clearly displayed
At Checkout & Orders:
- All bundle information preserved
- Personalization data included in order details
- Visible in customer emails and admin order view
advanced-bundle-system/
├── advanced-bundle-system.php # Main plugin file
├── includes/
│ ├── class-wc-product-bundle.php # Bundle product class
│ ├── class-abs-product-type.php # Bundle product type
│ ├── class-abs-admin.php # Admin functionality
│ ├── class-abs-frontend.php # Frontend display
│ ├── class-abs-cart.php # Cart functionality
│ ├── class-abs-personalization.php # Personalization system
│ ├── class-abs-general-personalization.php # Personalization for all product types
│ ├── class-abs-order.php # Order processing
│ ├── class-abs-stock.php # Stock management
│ ├── class-abs-settings.php # Plugin settings
│ ├── class-abs-inventory.php # Inventory manager
│ └── class-abs-cartflows-compat.php # CartFlows compatibility
├── assets/
│ ├── js/
│ │ ├── frontend.js # Frontend JavaScript
│ │ └── admin.js # Admin JavaScript
│ └── css/
│ ├── frontend.css # Frontend styles
│ └── admin.css # Admin styles
└── README.md # This file
The plugin provides several hooks for customization:
abs_bundle_discount_calculation- Modify discount calculationabs_personalization_max_length- Change max character limitabs_preview_disclaimer_text- Customize disclaimer text
abs_before_bundle_items- Before bundle items displayabs_after_bundle_items- After bundle items displayabs_personalization_saved- When personalization is saved
add_filter('abs_personalization_max_length', function($limit) {
return 100; // Change to 100 characters
});add_filter('abs_preview_disclaimer_text', function($text) {
return 'Your custom disclaimer text here';
});- Font selection (3 options) for personalization
- Color picker for personalization text
- Position selector for text placement
- Multi-line personalization support
- Image upload for custom graphics
- Template-based personalization
For issues, questions, or feature requests, please open an issue on the GitHub repository.
GPL v2 or later - see WordPress.org for details
Developed by JRG Code
Version: 1.3.8 Tested up to: WordPress 6.4 / WooCommerce 8.0 Requires: WordPress 5.8+ / WooCommerce 6.0+ / PHP 7.4+ Compatible with: CartFlows 1.0+