Memberstack – Member Management & Content Protection
Since 2019, we’ve helped thousands of businesses to generate $125,000,000 in revenue through premium content and membership sites. Our customers range from high school seniors to teams at Slack, Reddit, American Airlines, Webflow, IDEO, etc. Whether you’re creating a custom SaaS application, online course, subscription service, premium content site, or member community, we’re ready to help! Our WordPress integration makes it simple to protect content, manage members, and process payments without any coding knowledge. Perfect for content creators, course developers, and businesses looking to monetize their WordPress sites through memberships. Getting Started Guide Quick Start Video Tutorial Check out our installation and setup guide video: Watch Getting Started with Memberstack + WordPress In this video, you’ll learn how you can add gated content, social auth, and more to your WordPress site using the Memberstack plugin with WordPress! Why Choose Memberstack? No Coding Required – Easy setup with visual builders and pre-built components for WordPress Professional Features – Enterprise-grade security and functionality at a fraction of the cost Flexible Pricing – Start building in test mode for free with no credit card required Modern Authentication – Social login, passwordless options, and traditional email/password Page Builder Ready – Works seamlessly with popular builders like Bricks, Elementor, Gutenberg, and more Perfect For Online Courses & Educational Content Premium News & Media Sites Subscription Services Member Communities Digital Downloads Professional Services Content Creators Online Coaches Digital Products Essential Features Smart Content Protection Protect entire pages or specific sections Create multiple membership plans, paid or free Set up trial periods for paid plans Custom access rules Modern Authentication Social login (Google, GitHub, LinkedIn, etc.) Passwordless email login Traditional email/password Custom registration fields, we call them “custom fields” Profile management Payment & Subscriptions Stripe integration – Memberstack exclusively uses Stripe Multiple pricing tiers Free and paid plans Trial periods Payment management Pricing Start in test mode for free – no credit card required. When you’re ready to launch, choose the plan that fits your member count. As your business grows, unlock lower transaction fees. We added this section because we want to be transparent about our pricing and help you make an informed decision. Basic – $29/mo Perfect for up to 1,000 members 4% transaction fee – great for testing the waters All core features included Professional – $49/mo Scale up to 5,000 members Reduced 2% transaction fee All core features included Business – $99/mo Support up to 10,000 members Ultra-low 0.9% transaction fee All core features included Established – $499/mo 10,000+ members ZERO transaction fees – maximize your revenue All core features included Priority support included Every Plan Includes: WordPress integration Social login options Stripe payment processing Custom SSO Branded emails Member management dashboard Save 20% with annual billing Start for free in test mode and upgrade when you’re ready to launch. No hidden fees or surprises – just straightforward pricing that scales with your success. Page Builder Integration Works seamlessly with your favorite page builders: Bricks – Native elements for forms and buttons Elementor – Custom widgets for membership features Divi – Built-in module support Gutenberg – Dedicated blocks for content protection Easy Implementation Add membership features anywhere with our shortcodes: [memberstack_login] – Display login form [memberstack_signup] – Display signup form [memberstack_protected] – Protect content sections [memberstack_member] – Display member information [memberstack_modal] – Add modal triggers [memberstack_logout] – Add logout buttons Getting Started Install the Memberstack WordPress plugin Create your free Memberstack account at memberstack.com Copy your App ID from the Memberstack dashboard Paste the App ID in WordPress under Settings > Memberstack Start protecting content and adding membership features! Professional Support Extensive Documentation Support Team – Contact Us Community Forum – Join the Discussion WordPress Slack Community – Join the Slack Community Privacy Policy Memberstack integrates with our cloud service to manage memberships and protect content. View our Privacy Policy.
Top keywords
- memberstack16×2.54%
- content12×1.90%
- wordpress10×1.58%
- 0006×0.95%
- custom6×0.95%
- login6×0.95%
- member6×0.95%
- included5×0.79%
- members5×0.79%
- membership5×0.79%
- pricing5×0.79%
- start5×0.79%
WP Cassify
If you’re happy with this plugin : As a reward for my efforts, I would like to receive T-shirts (or other goodies) as gifts from the universities or companies that use it. My size is L. Best regards. This Apereo CAS authentication plugin has no phpCas library dependency. This is not only an authentication plugin. You can build custom authorization rules according to cas user attributes populated. If user don’t exist in WordPress database, it can be created automatically. There are many features. You can customize everything. Website https://wpcassify.wordpress.com/ Development and release environment This plugin is now developed and tested from a github repository. You can find it here : https://github.com/WP-Cassify/wp-cassify-develop Don’t hesitate to contribute to this project. You can fork it and make pull requests ! Requirements Require at least PHP version 7.0 Require at least PHP CURL package Features included SLO (Single Log Out) support (thanks to dedotombo and me) Adding NCONTAINS operator (thanks to blandman) Fix bug on Gateway mode (autologin) (thanks to dedotombo again). Now it’s now necessary to hack theme files to fire it. Adding option logout on authentication failure to not disturb users Initialize PHP session at a later stage (on wp_loaded not on init) Adding some customs hooks and filters. Tested with Apereo CAS Server version 7.3.5 Compatible with CAS Protocol version 2 and 3 Automatic user creation if not exist in WordPress database. Synchronize WordPress User metas with CAS User attributes. Add support for multivaluate cas user fields. Now multivaluate fields can be serialized to be stored in custom WP User meta. Backup / Restore plugin configuration options settings You can choose CAS User attributes you want to populate. Then you can access them via PHP Session. Be careful, to access to CAS User Attributes from your theme file (from 1.8.4), use code below : wp_cassify_get_cas_user_datas() ); } ?> Set up WordPress Roles to User according to CAS User attributes. If plugin is network activated, you can define User Role Rule scope by blog id. Authorization rule editor. Compatible with WordPress Access Control Plugin. Manage URL White List to bypass CAS Authentication on certain pages. Much simpler bypass authentication with post method provided by Susan Boland (See online documentation). Create wordpress authentication form with redirect attribute like this (works only if URL bypass is enabled in settings) : true, 'remember' => true, 'redirect' => site_url( '/?wp_cassify_bypass=bypass' ), 'form_id' => 'loginform', 'id_username' => 'user_login', 'id_password' => 'user_pass', 'id_remember' => 'rememberme', 'id_submit' => 'wp-submit', 'label_username' => __( 'Username' ), 'label_password' => __( 'Password' ), 'label_remember' => __( 'Remember Me' ), 'label_log_in' => __( 'Log In' ), 'value_username' => '', 'value_remember' => false ); wp_login_form( $args ); ?> Receive email notifications when trigger is fired (after user account creation, after user login/logout). Define notifications rules based on user attributes values. Purge user roles before applying user role rules. Define user account expiration rules bases on CAS User attributes. Network activation allowed You can set Service Logout URL (Needs to have CAS Server with followServiceRedirects option configured). Add support for web application hosted behind a reverse proxy. (Thanks to franck86) Add custom hooks : wp_cassify_after_cas_authentication, wp_cassify_before_auth_user_wordpress, wp_cassify_before_redirect, wp_cassify_after_redirect. (See online documentation) Custom filter to perform custom cas server response parsing. Hook name : wp_cassify_custom_parsing_cas_xml_response (See online documentation) Custom shortcode to generate CAS login/logout link into your blog. (See online documentation) Debug settings, dump last xml cas server response. Detect if user has already authenticated by CAS from your public pages and perform auto-login with gateway mode Add ‘-IN’ and ‘-NOTIN’ operators to process array attributes values returned from CAS. When you have : $cas_user_datas['title'] = array( 'Student', 'Professor' ); Then you can use : (CAS{title} -IN "professor")