> ## 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 popular website builders to sell memberships and provide links for members to sign in and manage their accounts. These platforms support Memberful purchase and account links without requiring a custom integration.

In this help article, we'll explain how to connect Memberful with Squarespace, Webflow, Wix, or Weebly and review the available options for protecting members-only content.

## Choose your platform to get started

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

  <Card title="Webflow" icon="link" href="/docs/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="/docs/plans/promote-and-sell/wix">
    Add purchase and account links using Wix's custom code settings.
  </Card>

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

## Important limitations

<Callout icon="triangle-alert" color="#FFE044">
  Squarespace, Webflow, Wix, and Weebly do not support single sign-on with Memberful. You cannot use Memberful to restrict access to pages hosted directly on these platforms.
</Callout>

You can still add links that allow members to:

* purchase a subscription
* sign in to their Memberful account
* manage their subscription and billing
* update their personal information

## Options for members-only content

To publish content that only members can access, choose one of these options:

* Use the [Memberful plugin with WordPress](/docs/overview/setup-guides/wordpress-membership-site/) to protect content on your own site
* Use [Memberful's built-in member website](/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",
}}
/>
