Theme and page builder compatibility
Most WordPress themes and page builders are compatible with Memberful. The only requirement is that they must present post and page content using the default WordPress content function. When those aren't used, the theme or page builder won't work with the Memberful WordPress plugin.
In this help doc:
- Known incompatible themes and page builders.
- Using the Advanced Custom Fields (ACF) plugin or Memboroni theme.
Known incompatible themes and page builders
- Avia
- Uncode
- Thrive
- Themify
- SiteOrigin
Looking for a WordPress theme? We recommend the Make theme and page builder from our sister company, The Theme Foundry. If you're looking for a separate page builder plugin, we recommend Beaver Builder.
Using the ACF plugin or Memberoni theme
You can use our Restrict Access tool and memberful_can_user_access_post()
in your template file to check if a user should have access to a post. Based on that, you can decide if you want to show them custom content.
if(memberful_can_user_access_post(get_current_user_id(), $post->ID)) {
// show content
} else {
// show something else
}
Related help docs: