I've been watching the tutorial on making a custom member's dashboard as I'm building one for a kid's nursery.
Is it possible to have different dashboards depending on the type of person logging in?
Like a unique dashboard for parents, teachers and management. And if so how do you go about it?
Hi Shomari, I'm assuming you are referring to this tutorial:
To answer your question - Yes! (With Velo code)
You could either have sections of a single dashboard page that collapse/expand conditionally or even multiple pages that you redirect to.
One main question you need to answer is how to classify "types" of members. Is it based on roles or having an item in a CMS collection. Or something else?
Either way the general steps would involve getting the current member with the members API: https://dev.wix.com/docs/velo/api-reference/wix-members-frontend/current-member/get-member
Figuring out the "type" re above Then displaying the conditional UI
Hope that helps!
Eitan