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

> Connect Memberful to Weebly to add purchase and account links to your site, so visitors can buy plans and members can access 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>;
};

Weebly works with Memberful for selling memberships and giving members access to their accounts. You can add purchase links, account links, and embedded Memberful code to your Weebly site.

In this help article, we'll show you how to connect Memberful to Weebly, add purchase buttons, and link members to their account content.

## Weebly limitations

Weebly does not support single sign-on (SSO), so Memberful cannot protect pages or create a complete members-only area within your Weebly site.

Members can still:

* sign in to their member account
* manage their subscription and billing
* update their profile information
* access included downloads and podcast feeds

To restrict access to content, you can create a [WordPress membership site](/docs/overview/setup-guides/wordpress-membership-site/) or use [Memberful's built-in 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 provided code.

In Weebly, go to **Settings** → **SEO** and paste the Memberful code into *Header Code*. Save your changes.

<Frame>
  <img src="https://mintcdn.com/memberful/xXjwqCUtMkelgT1Y/images/integrations/website-builders/weebly/header-code.gif?s=24cc6a97f942d8a712ba971fc97502a8" alt="Weebly install" width="1054" height="613" data-path="images/integrations/website-builders/weebly/header-code.gif" />
</Frame>

## Create a plan and purchase button

<Steps>
  <Step title="Open the plan links">
    In your Memberful dashboard, go to **Revenue → Plans**, select the plan, and click **Links**.

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

  <Step title="Select a price">
    Select the price you want to create a purchase link for.
  </Step>

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

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

  <Step title="Add the link to Weebly">
    Add the purchase link to a button or text link on your Weebly site. Visitors can use it to open Memberful checkout and subscribe.

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

<Callout icon="lightbulb" color="#4DA3FF">
  Place purchase links in visible areas such as your homepage or navigation. Use button text that clearly communicates the plan and price.
</Callout>

## Add an account link

Add an account link to your site so members can manage their subscriptions, profile, and billing details.

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

Replace `ACCOUNT-URL` with your account subdomain. You can find this in **Website** → **General settings** in your Memberful dashboard.

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

## Add a downloads link

Add a downloads 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/).

## Add a podcast link

Add a podcast link to take members directly to their members-only podcast feeds.

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

For more detail, 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",
}}
/>
