Why Memberstack?

Memberstack is an exciting alternative to Webflow Memberships when you want access to tons of powerful features or the possibility of scale to thousands or millions of members.

For a complete list of features, please see the Memberstack website.

Here's a quick list of features that are included on all Memberstack Plans.

Authentication: Social Sign On, Passwordless Login, Email verification, Block concurrent logins, etc.

Payments: Google & Apple Pay Support, Plan Logic, Automatic Taxes, iDeal, SEPA, ACH, etc.

Security: Unlimited Members, Hosted Content, 2FA, etc.

Management: Emailing, Import from Stripe, Metrics/Analytics, etc.

Developers: Front-end & Backend APIs, Event Log, Webhooks, Make & Zapier, etc.

Getting Started

The best place is always our Basic Webflow Tutorial. It will give you a solid understanding of the basic.

From there, you can browse your dashboard or the help center for info on how to enable other features, create different kinds of plans, etc.

If you get stuck, notice any issues, or need additional support you can contact the Memberstack team here or join the Memberstack Slack community with thousands of other folks building with Memberstack.

Page Redirects

Add this script to header of each Webflow Memberships page.

<script type="text/javascript">
   document.addEventListener("DOMContentLoaded", function() {
       var oldToNewPaths = {
           "/log-in": "/login",
           "/signup": "/signup",
           "/reset-password": "/forgot-password",
           "/update-password": "/new-password",
           "/access-denied": "/not-allowed",
           "/user-account": "/profile"
       };

       var currentPath = window.location.pathname;

       if (oldToNewPaths[currentPath]) {
           window.location.href = oldToNewPaths[currentPath];
       }
   });
</script>