> ## 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.

# Integrate with Squarespace

> Connect Memberful to Squarespace to add purchase and account links, gate protected content, and let visitors buy plans and manage their accounts.

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>;
};

Squarespace is a website builder that you can use with Memberful to sell memberships and give members access to their Memberful accounts. Squarespace does not support Memberful content protection, but you can connect the two platforms using purchase links and embedded code.

In this help article, we'll show you how to connect Memberful to Squarespace, add purchase buttons, and give members access to their account, downloads, and podcast feeds.

## Understand the Squarespace limitations

Squarespace does not support single sign-on (SSO), so you cannot use Memberful to create members-only pages on a Squarespace site.

Members can still:

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

To restrict content, you can:

* [create a WordPress membership site](/docs/overview/setup-guides/wordpress-membership-site/)
* [use Memberful's member website](/docs/overview/setup-guides/hosted-member-site/)

## Insert the Memberful code

Go to **Website → Custom website** in your Memberful dashboard and copy the code provided.

In Squarespace, go to **Website → Pages → Custom Code → Code Injection**. Paste the Memberful code and save your changes.

<Callout icon="triangle-alert" color="#FFE044">
  Code injection is only available on the Squarespace Core plan or higher.
</Callout>

## Add a purchase button

<Steps>
  <Step title="Open the plan links">
    Go to **Revenue** → **Plans** in your Memberful dashboard. Click the plan you want to sell, then click **Links**.

    <Frame>
      <img src="https://mintcdn.com/memberful/3qefgRszVKlaCpdr/images/integrations/website-builders/squarespace/plan-links.png?fit=max&auto=format&n=3qefgRszVKlaCpdr&q=85&s=75e689fd4691ab2803d10d07ba5f022d" alt="Open the Links section for a Memberful plan" width="1440" height="928" data-path="images/integrations/website-builders/squarespace/plan-links.png" />
    </Frame>
  </Step>

  <Step title="Copy a purchase link">
    Copy the plan purchase link or gift purchase link.

    <Frame>
      <img src="https://mintcdn.com/memberful/3qefgRszVKlaCpdr/images/integrations/website-builders/squarespace/plan-urls.png?fit=max&auto=format&n=3qefgRszVKlaCpdr&q=85&s=63299758b052495b383acf12862d49e8" alt="Copy a Memberful plan purchase or gift purchase link" width="1440" height="1278" data-path="images/integrations/website-builders/squarespace/plan-urls.png" />
    </Frame>
  </Step>

  <Step title="Add the link to a button">
    Add the link to a Squarespace button. Visitors can click the button to complete checkout and subscribe.

    <Frame>
      <img src="https://mintcdn.com/memberful/xXjwqCUtMkelgT1Y/images/integrations/website-builders/squarespace/memberful-overlay.png?fit=max&auto=format&n=xXjwqCUtMkelgT1Y&q=85&s=5e54954cd2fe1df1e6340c7943109cca" alt="Memberful checkout opened from a Squarespace site" width="1440" height="945" data-path="images/integrations/website-builders/squarespace/memberful-overlay.png" />
    </Frame>
  </Step>
</Steps>

<Callout icon="info" color="#22E273">
  Place purchase buttons in visible areas such as your homepage or navigation. Include the price in the button or surrounding text so visitors understand what they are purchasing.
</Callout>

## Add member account links

You can add links to your Squarespace site that take members directly to specific areas of their Memberful account.

Replace `ACCOUNT-URL` in each link with your Memberful account subdomain. You can find it by going to **Website** → **General settings** in your Memberful dashboard.

### Account

Use this link to let members manage their subscription, profile, and billing details:

```text theme={null}
https://ACCOUNT-URL.memberful.com/account
```

For more detail, see [How members access their account](/docs/member-interface/account/access-their-account/).

### Downloads

Use this link to take members directly to their downloads:

```text theme={null}
https://ACCOUNT-URL.memberful.com/account/downloads
```

For more detail, see [Include or sell downloads](/docs/plans/plan-options/include-or-sell-downloads/).

### Podcast feeds

Use this link to take members directly to their members-only podcast feeds:

```text theme={null}
https://ACCOUNT-URL.memberful.com/account/feeds
```

For full setup guidance, see [Offer a paid podcast](/docs/overview/setup-guides/paid-podcast/).

<RelatedDocs
  link1={{
url: "/overview/setup-guides/wordpress-membership-site/",
label: "Create a WordPress membership site.",
}}
  link2={{
url: "/overview/setup-guides/hosted-member-site/",
label: "Use Memberful's built-in member website.",
}}
/>
