> ## Documentation Index
> Fetch the complete documentation index at: https://memberful.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Use Memberful with popular site builders

> Use Memberful with popular website builders like Squarespace, Webflow, Wix, and Weebly to sell memberships and connect visitors to your member experience.

export const RelatedDocs = ({link1, link2, link3, link4, link5, link6, link7, link8, link9, link10, className = ""}) => {
  const links = [link1, link2, link3, link4, link5, link6, link7, link8, link9, link10].filter(Boolean);
  if (!links.length) return null;
  return <section className={`related-docs border dark:border-gray-700 rounded-2xl px-6 py-4 mt-6 ${className}`}>
      <p className="mb-2 font-medium">
        <strong>Related help docs:</strong>
      </p>
      <ul className="space-y-1 mb-1 mt-1">
        {links.map((link, index) => <li key={index}>
            <a href={link.url}>{link.label}</a>
          </li>)}
      </ul>
    </section>;
};

You can use Memberful with website builders like Squarespace, Webflow, Wix, and Weebly to sell memberships and link your site to your member experience. These platforms allow you to add purchase links, buttons, and account access points without needing a custom integration.

In this help article, we'll show you how to use Memberful with common site builders and explain important limitations around content protection and member access.

## Choose your platform to get started:

<Columns cols={2}>
  <Card title="Squarespace" icon="link" href="/plans/promote-and-sell/squarespace">
    Add Memberful purchase buttons and account links using Code Injection.
  </Card>

  <Card title="Webflow" icon="link" href="/plans/promote-and-sell/webflow">
    Embed Memberful scripts and links directly on your Webflow pages.
  </Card>
</Columns>

<Columns cols={2}>
  <Card title="Wix" icon="link" href="/plans/promote-and-sell/wix">
    Add purchase and account links using Wix's custom code settings.
  </Card>

  <Card title="Weebly" icon="link" href="/plans/promote-and-sell/weebly">
    Embed Memberful links and checkout buttons on your Weebly site.
  </Card>
</Columns>

## Important limitations

These site builders do not support single sign-on (SSO). This means you cannot create true members-only pages directly within these platforms using Memberful.

Your members can still:

* sign in to their member account
* manage their subscription and billing
* update their profile information

## Options for members-only content

If you want to restrict access to content for members only, use one of these approaches:

* Use the [Memberful plugin with WordPress](https://memberful.com/docs/overview/setup-guides/wordpress-membership-site) to protect content on your own site
* Use [Memberful's built-in member website](https://memberful.com/docs/overview/setup-guides/hosted-member-site) for a simple, secure members-only experience

<RelatedDocs
  link1={{
url: "/website-builder/settings/member-website-settings/",
label: "Set up and customize your member website",
}}
  link2={{
url: "/wordpress-plugin/protect-content/restrict-access-to-a-single-post/",
label: "Protect content with the WordPress plugin",
}}
/>
