# disco/1.4.17/backend/views/components/ProPlan/data/pricing.js

Discount Rules for WooCommerce – Disco | Dynamic Pricing, Conditions, Bulk, Bundle, BOGO, version 1.4.17. 86 lines.

- Page: https://pluginprobe.com/plugins/disco/1.4.17/code/backend/views/components/ProPlan/data/pricing.js
- Raw: https://pluginprobe.com/plugins/disco/1.4.17/raw/backend/views/components/ProPlan/data/pricing.js
- Modified: 2026-09-11T05:31:24+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/disco/1.4.17/code/backend/views/components/ProPlan/data/pricing.js#L10-L20`.

```javascript
const BASE_CHECKOUT = 'https://discoplugin.com/checkout/?add-to-cart=';

const pricingPlans = [
	{
		name: '1 Site',
		sub: 'Perfect for a single store',
		yearlyPrice: 69,
		originalYearly: 83,
		lifetimePrice: 106,
		originalLifetime: 265,
		popular: false,
		checkoutUrl: {
			yearly: BASE_CHECKOUT + '893',
			lifetime: BASE_CHECKOUT + '896',
		},
		features: [
			'5 Discount types',
			'All Product-level Rules',
			'Advanced BOGO (1+1 deal)',
			'Bulk quantity discounts',
			'Variable + wholesale pricing',
			'Multi-currency support',
			'Campaign analytics dashboard',
			'Priority support',
		],
		renewNote: 'Renews at same price after 1 year',
		renewColor: 'disco:text-red-500',
	},
	{
		name: '5 Sites',
		sub: 'For agencies & multi-store',
		yearlyPrice: 95,
		originalYearly: 119,
		lifetimePrice: 153,
		originalLifetime: 383,
		popular: true,
		checkoutUrl: {
			yearly: BASE_CHECKOUT + '894',
			lifetime: BASE_CHECKOUT + '897',
		},
		features: [
			'5 Site licenses',
			'All Pro features included',
			'Advanced BOGO (1+1 deal)',
			'Bulk quantity discounts',
			'Variable + wholesale pricing',
			'Multi-currency support',
			'ADI supported conditions',
			'Campaign analytics dashboard',
			'Priority 1-on-1 support',
			'White-label support (addon)',
		],
		renewNote: 'Lifetime free after 1 year',
		renewColor: 'disco:text-emerald-600',
	},
	{
		name: '10 Sites',
		sub: 'For large agencies',
		yearlyPrice: 124,
		originalYearly: 155,
		lifetimePrice: 199,
		originalLifetime: 498,
		popular: false,
		checkoutUrl: {
			yearly: BASE_CHECKOUT + '895',
			lifetime: BASE_CHECKOUT + '898',
		},
		features: [
			'10 Site licenses',
			'All Pro features included',
			'Advanced BOGO (1+1 deal)',
			'Bulk quantity discounts',
			'Variable + wholesale pricing',
			'Multi-currency support',
			'ADI supported conditions',
			'Campaign analytics dashboard',
			'Priority 1-on-1 support',
			'Get free setup + migration',
		],
		renewNote: 'Lifetime free after 1 year',
		renewColor: 'disco:text-emerald-600',
	},
];

export default pricingPlans;

```
