2
2 Comments

Annual Pricing as a Discount

In January, I redesigned the Boords pricing page to reframe annual plans as discounts.

Reframing the annual price as a discount

Here's what happened:

Monthly vs Yearly

While absolute plan numbers increased, the percentage of annual vs monthly subscriptions did not (in fact they are generally lower). I take this to mean that for our audience, reframing annual plans as discounts doesn't work, but the new pricing page layout is more effective at converting customers.

Here's the old pricing page for reference. The plans run from low to high, whereas the new page uses high to low, which has been shown to boost conversion.

Pre-January Boords pricing page

Of course, the pricing page doesn't exist in isolation, and we've added several new product landing pages with new creative, which has certainly had a positive effect.

On a technical note, I was able to gather the annual vs monthly data using a Stripe sigma query:

with subscriptions_by_interval as (
  select
    prices.recurring_interval as BillingInterval,
    count(prices.recurring_interval) as Subscribers
  from
    subscriptions
    inner join prices on subscriptions.price_id = prices.id
    left join customers on subscriptions.customer_id = customers.id
  where
    prices.unit_amount > 0
    and month(subscriptions.created) = 1 -- Change month number
    and year(subscriptions.created) = 2021 -- Change year
  group by
    prices.recurring_interval
  order by
    prices.recurring_interval asc
)
select
  BillingInterval as "Billing Interval",
  Subscribers,
  Subscribers * 100 / t.s AS "% of total"
from
  subscriptions_by_interval
  CROSS JOIN (
    SELECT
      SUM(Subscribers) AS s
    FROM
      subscriptions_by_interval
  ) t

I borrowed the idea for this experiment from Manuel Frigerio's post on reframing discounts. Even though it didn't boost our annual to monthly ratio, I'm delighted to achieve a higher-converting pricing page overall. Next step is to re-implement the original month/annual pricing toggle to see if we can build on higher overall numbers. Onward!

P.s. If you enjoyed this post, please be a sport and like the thread on Twitter. I'll be forever grateful. 🙏

on April 9, 2021
  1. 1

    The animated pricing table is certainly more fun, but as a consumer, I prefer seeing all the info I need in one place at once. I don't like having to keep figures in my head while a make a decision in general.

    I think it's a smart move to go with the more traditional pricing table.

    It's also good that the annual discount is between 10% and 25%. That's compelling. I've seen annual plans that offered just 8% off. I'd rather go month to month for a while at that rate.

    Thanks for sharing!

    1. 1

      Thanks for the feedback, Dustin. Yep, good to keep the mental effort required as simple as possible!