Membership Tiers: beta feedback/issues

Hi @fueko :wave: -

I’m glad you’re liking it so far. I’m a big fan of the Genki theme.

We do have plans to add that functionality. For now, we have most of it in place in a beta form with @product / @products fixed data variables. The only thing this won’t return of the things you mentioned is benefits, which is very much on our radar as we improve things.

I will caveat that this is not final and may change as we receive feedback. And please feel free to share your feedback as well once you use this!

Here is a basic example:

{{#if @product}}
    {{#if @product.monthly_price}}
        <a data-members-plan="{{@product.monthly_price.id}}">
            Sign up to {{@product.name}} for {{price @product.monthly_price}} a month
        </a>
    {{/if}}

    {{#if @product.yearly_price}}
        <a data-members-plan="{{@product.yearly_price.id}}">
            Sign up to {{@product.name}} for {{price @product.yearly_price}} annually
        </a>
    {{/if}}
{{else}}
    {{#foreach @products as |product|}}
        {{#if product.monthly_price}}
            <a data-members-plan="{{product.monthly_price.id}}">
                Sign up to {{product.name}} for {{price product.monthly_price}} a month
            </a>
        {{/if}}

        {{#if product.yearly_price}}
            <a data-members-plan="{{product.yearly_price.id}}">
                Sign up to {{product.name}} for {{price product.yearly_price}} annually
            </a>
        {{/if}}
    {{/foreach}}
{{/if}}
5 Likes