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

> Connect Memberful to Wix, add purchase and account links to your Wix site, and let visitors buy plans and members sign in to 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>;
};

Wix is a website builder that you can use with Memberful to sell memberships and give members access to their Memberful accounts. Wix 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 Wix, add purchase buttons, and give members access to their account, downloads, and podcast feeds.

## Understand the Wix limitations

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

Members can still:

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

To restrict access to 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 Wix, go to **Settings → Custom Code**, then click **+ Add Custom Code**. Paste the Memberful code.

For more detail, see [Wix's documentation on embedding custom code.](https://support.wix.com/en/article/embedding-custom-code-to-your-site)

## 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/wix/plan-links.png?fit=max&auto=format&n=3qefgRszVKlaCpdr&q=85&s=e2e41ef0deefda39eb1d178032d94186" alt="Open the Links section for a Memberful plan" width="1440" height="928" data-path="images/integrations/website-builders/wix/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/wix/plan-urls.png?fit=max&auto=format&n=3qefgRszVKlaCpdr&q=85&s=6a0ff6b148f2126f12613a34ebc2185c" alt="Copy a Memberful plan purchase or gift purchase link" width="1440" height="1278" data-path="images/integrations/website-builders/wix/plan-urls.png" />
    </Frame>
  </Step>

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

    <Frame>
      <img src="https://mintcdn.com/memberful/xXjwqCUtMkelgT1Y/images/integrations/website-builders/wix/memberful-overlay.png?fit=max&auto=format&n=xXjwqCUtMkelgT1Y&q=85&s=1bfd32ac5c02a13a28f6580d3583ed7d" alt="Memberful checkout opened from a Wix site" width="1440" height="945" data-path="images/integrations/website-builders/wix/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 Wix 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.",
}}
/>
