Handling Features of App based on Subscription Level

How do we handle this.
I have an app with a Free Version and a Paid Version.
How do I show my Paid Customer the Paid Version vs that of the Free Customer?

Hi @ThunderBlade,

There are multiple methods to implement this. If your app has only 2 customer types (Free and Paid), the easiest way would be to create a True/False property in Users collection, name it, say, “isPremium”, and mark it as True for users who paid, and False for free-tier users.

Then you can use Logged-in User → isPremium in various places: conditional actions, conditional visibility of the elements, etc.

Best,
Victor.

That’s kind of what I was thinking, but failing to make it work…I will continue to try this path.
I’ll update this if I have that Eureka Moment.

Thanks for the response.

I figured it out.
Basically, I have 2 subscription levels. Free and Premium, as you’ve mentioned.
I wanted to have 2 different Startup Screens based on those Subscription Levels.
I found where you can you the true false to direct the link into the appropriate screen.

Thanks for the path forward.

Hi @ThunderBlade,

A long time ago I’ve made a tutorial about Admin and User access. The approach might be useful in your case: https://youtu.be/_FjSolSWukg.

Best,
Victor.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.