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

# Move group to a different plan

> Move a group subscription from one plan to another from the Memberful dashboard when a group manager needs to switch tiers or change plans.

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

In this help article, we'll show you how to move a group manager to a different plan in the same group.

## Change a group manager's plan

If you've set up a [group](/plans/plan-options/plan-changes), you can move a group manager (and their members) to another plan in that group. Here's how:

1. Go to the group manager's profile and click the subscription link.
2. Click **Change.**
   <Frame>
     <img src="https://mintcdn.com/memberful/P3ntiEDteVYenEMQ/images/group-plans/move-group-to-a-different-plan/change-the-manager-plan1.png?fit=max&auto=format&n=P3ntiEDteVYenEMQ&q=85&s=36f34fa6a3960eef8ef439cc8fd3e90b" alt="Change the manager's plan" width="1440" height="452" data-path="images/group-plans/move-group-to-a-different-plan/change-the-manager-plan1.png" />
   </Frame>
3. Select a different plan from the list.

<Frame>
  <img src="https://mintcdn.com/memberful/P3ntiEDteVYenEMQ/images/group-plans/move-group-to-a-different-plan/change-the-manager-plan2.png?fit=max&auto=format&n=P3ntiEDteVYenEMQ&q=85&s=4114fcd5f4ceffabb792796bb569c3a3" alt="Select the manager's plan" width="1440" height="1145" data-path="images/group-plans/move-group-to-a-different-plan/change-the-manager-plan2.png" />
</Frame>

4. Click **Confirm and change plan.**

## Switch a group subscription to an individual subscription

To switch a group subscription to an individual subscription, first remove all group members except the group manager.

Once only the group manager remains on the subscription, you can move them to an individual plan in the same plan group. If there are still additional members on the group subscription, the switch won't be available.

This helps prevent accidentally removing access for members who are still part of the group.

<RelatedDocs
  link1={{
url: "/member-management/group-management/add-or-remove-group-members",
label: "Add or remove group members.",
}}
  link2={{
url: "/plans/plan-options/accept-external-payments",
label: "Accept external payments.",
}}
  link3={{
url: "/member-management/group-management/replace-the-group-manager",
label: "Replace the group manager.",
}}
/>
