| 1 |
const comparisonData = [ |
| 2 |
{ |
| 3 |
title: '🏷️ Discount Types', |
| 4 |
rows: [ |
| 5 |
['Product Intent Discounts', true, true], |
| 6 |
['Cart Intent Discounts', true, true], |
| 7 |
['Free Shipping Discount', true, true], |
| 8 |
['Bulk / Quantity Tiers', true, true], |
| 9 |
['Bundle / Combo Deals', true, true], |
| 10 |
['BOGO — Buy X Get X Free', false, true], |
| 11 |
['Advanced BOGO (% & Fixed Amount)', false, true], |
| 12 |
['BOGO — Buy X Get Y Free (Products)', false, true], |
| 13 |
['BOGO — Buy X Get Y Free (Category)', false, true], |
| 14 |
['User Limit', false, true], |
| 15 |
], |
| 16 |
}, |
| 17 |
{ |
| 18 |
title: '⚙️ Conditions & Targeting', |
| 19 |
rows: [ |
| 20 |
['Product & Price Attributes Conditions', true, true], |
| 21 |
['Cart Subtotal', true, true], |
| 22 |
['AND / OR Logic Groups', true, true], |
| 23 |
['Custom Post Type Attributes', true, true], |
| 24 |
['Payment Method Discounts', true, true], |
| 25 |
['Customer User Role', true, true], |
| 26 |
['Country Specific Conditions', true, true], |
| 27 |
['Item Quantity and Count', false, true], |
| 28 |
['Purchase History Conditions', false, true], |
| 29 |
['Customer Order History', false, true], |
| 30 |
['Products In Cart', false, true], |
| 31 |
['ACF Custom Field Conditions', false, true], |
| 32 |
['Product Brand & Taxonomy Filters', false, true], |
| 33 |
], |
| 34 |
}, |
| 35 |
{ |
| 36 |
title: '🌍 Multi-Currency & Language', |
| 37 |
rows: [ |
| 38 |
['WPML Multi-Currency Support', false, true], |
| 39 |
['FOX Currency Switcher', false, true], |
| 40 |
['CURCY Multi Currency', false, true], |
| 41 |
['Aelia Currency Switcher', false, true], |
| 42 |
], |
| 43 |
}, |
| 44 |
{ |
| 45 |
title: '🎨 Storefront Design Blocks', |
| 46 |
rows: [ |
| 47 |
['Product Price Badges', false, true], |
| 48 |
['Countdown Timers', false, true], |
| 49 |
['Cart Banners', false, true], |
| 50 |
['Bulk Pricing Tables', false, true], |
| 51 |
['White-Label Badges (no Disco branding)', false, true], |
| 52 |
], |
| 53 |
}, |
| 54 |
{ |
| 55 |
title: '📊 Analytics & Reporting (Coming Soon)', |
| 56 |
rows: [ |
| 57 |
['Campaign Performance Dashboard', false, true], |
| 58 |
['Revenue Attribution per Campaign', false, true], |
| 59 |
['Orders Influenced Tracking', false, true], |
| 60 |
['Discount Usage Reports', false, true], |
| 61 |
], |
| 62 |
}, |
| 63 |
{ |
| 64 |
title: '💬 Support & Updates', |
| 65 |
rows: [ |
| 66 |
['WP.org Community Support', true, true], |
| 67 |
['Priority Email Support (24h)', true, true], |
| 68 |
['Priority Support (4h response)', false, true], |
| 69 |
['Lifetime Free Updates', true, true], |
| 70 |
['Free Forever After 5 Years', false, true], |
| 71 |
], |
| 72 |
}, |
| 73 |
]; |
| 74 |
|
| 75 |
export default comparisonData; |
| 76 |
|