peterfremlin / Disability-Debrief

0 stars 0 forks source link

Presentation of subscription options #9

Closed peterfremlin closed 1 year ago

peterfremlin commented 1 year ago

Current presentation of three different tiers on /support/

Screenshot 2023-08-03 at 15 26 51

It would be nice to have three buttons in one line with the monthly amounts

i.e. html code for three buttons

cathysarisky commented 1 year ago

If they're not subscribed, should pop up this page? https://www.disabilitydebrief.org/support/ If they are already subscribed, trigger the Stripe page?

So it'd be like [Using (price) to represent a button.] Subscription:

Custom Donation: [keep existing stuff here? or also style as a button?]

peterfremlin commented 1 year ago

Not quite sure what you meant by pop-up that page?

I was imagining 3 buttons in one line, I can't fully visualise what you're suggesting.

Custom donation I am probably going to get something directly on the page, working on that :)

cathysarisky commented 1 year ago

Sorry - bad link. I meant should it open up the portal pop up?

peterfremlin commented 1 year ago

I don't love the main portal page for this purpose. Supporters get no benefits, so it's a question of them choosing a number, and they don't need more info. But yes, then clicking on the amount should take them into the portal page of signing up for that amount.

cathysarisky commented 1 year ago

Right, can do.

cathysarisky commented 1 year ago

Like this? image

If so, put this in an HTML card:

<ul>
    <li>Subscription</li>
    <ul>
    <li>Monthly at <a  href="#/portal/signup/64ebbbe882217a72f7723c29/monthly" class="price">£5</a> <a href="#/portal/signup/64ebbbe882217a72f7723c29/monthly" class="price">£10</a> <a href="#/portal/signup/64ebbbe882217a72f7723c29/monthly" class="price">£20</a></li>
        <li>Annually at <a href="#/portal/signup/64ebbbe882217a72f7723c29/yearly" class="price">£50</a> <a href="#/portal/signup/64ebbbe882217a72f7723c29/yearly" class="price">£100</a> <a href="#/portal/signup/64ebbbe882217a72f7723c29/yearly" class="price">£200</a></li>
        </ul>
</ul>

You'll need to change the tier codes to match your portal tiers - find them in settings > membership > customize portal > Links (dropdown at the top of the modal), then choose each tier to get the appropriate tier codes.

peterfremlin commented 1 year ago

Thanks! This is what I asked for. But it shows me I don't love the solution I proposed :)

It gives me the idea to make a list of

without need for any buttons.

Maybe the issue is I should give fewer subscription options, or to do something with pull down menus.

Unless you have a bright idea of how to present this more attractively then I'm happy to close this issue and make the list myself.

cathysarisky commented 1 year ago

I don't have a better idea than that. I'll leave the 'price' class in, in case you decide you want it.