Multiple newsletters/tiers filtering

Potentially duplicate.

Hello Ghost people!

I have built a Ghost custom theme, that ended up with a combination of website + 2 custom servers because of multiple newsletters I need to have for the specific brand.

But now I need also to use the membership gateway.

I have 5 separate newsletters with 2 and 3 tiers each - they are all handled on the server, but I need to have the members to be able to see the posts of the newsletter type AND tier level they subscribed to. Is that possible with tags at the moment? If yes - I can create them with the ghost api call for the member, but can I have them also with separate tiers?

If I do not publish the posts for the highest paid tiers that will make 10 tiers, is that a good solution for production self hosted website? I am also building another one with 8 newsletters - each having more than 2 tiers, so I am looking for a stable solution.

Thank you in advance!

I found a way to achieve my goal.

My forms are custom html forms, they send data to the server. Simply adding data-members-form, data-members-email, data-members-email and data-members-label with the certain value does what I need inside the Ghost system. The js listener in the theme reads the event received from the form and then submits a custom one with the same data that sends it to Ghost.

From then - make the check if the member labels are among the post tags (the tags must match the customers labels across the system for each of the plans).