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

# Pause a subscription

> Pause subscription charges for a member in Memberful. Compare the available options so you can pick the approach that fits your situation and member's needs.

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

export const ContactSupport = ({label = "Contact us to get set up →", fallbackEmail = "info@memberful.com", className = ""}) => {
  const handleClick = e => {
    e.preventDefault();
    if (typeof window !== 'undefined' && window.Intercom) {
      try {
        window.Intercom('showNewMessage');
        return;
      } catch (error) {
        console.warn('Intercom failed to open:', error);
      }
    }
    window.location.href = `mailto:${fallbackEmail}`;
  };
  return <a href={`mailto:${fallbackEmail}`} onClick={handleClick} className={className}>
      {label}
    </a>;
};

In this help article, we'll explore the different ways to pause a subscription for a member. If you need to pause subscriptions for more than 20 members, <ContactSupport label="contact our support team" />.

## Extend the renewal date

This action allows you to customize the specific date for the next charge and does not impact your churn metrics.

Go to the member's profile, click the subscription link, and change the renewal to a later date.

<Frame>
  <img src="https://mintcdn.com/memberful/piu8OqoFPVjI8Aw6/images/manage-your-members/pause-a-subscription/change-date.png?fit=max&auto=format&n=piu8OqoFPVjI8Aw6&q=85&s=a8810a9a8ca06fe52a9423e5f90dcc3e" alt="Extend renewal date" width="1440" height="345" data-path="images/manage-your-members/pause-a-subscription/change-date.png" />
</Frame>

## Apply a coupon to the subscription

Go to *Revenue → Coupons* and [create a 100% off recurring coupon](/discounts-and-gifting/coupons/create-a-coupon). From the member's profile, click the subscription link and then click **Add coupon**. When you want to unpause the member, remove the coupon from their subscription.

<Frame>
  <img src="https://mintcdn.com/memberful/piu8OqoFPVjI8Aw6/images/manage-your-members/pause-a-subscription/coupon-applied.png?fit=max&auto=format&n=piu8OqoFPVjI8Aw6&q=85&s=4d77bc13bc5ad1dabedd1e1adccb651f" alt="Coupon applied" width="1440" height="903" data-path="images/manage-your-members/pause-a-subscription/coupon-applied.png" />
</Frame>

Applying a 100% coupon to a subscription is considered a paying member loss and counted towards your churn rate.

## Suspend the order

Suspending an order is an administrative action that temporarily pauses a member's subscription and prevents access to their subscription and any exclusive member benefits. [Learn more about suspending orders.](/member-management/payments-and-access/refund-or-suspend-an-order/#suspend-an-order)

Go to the member's profile, click the subscription Order #, and then click **Suspend order.** If you later want to unpause the subscription, return to this location and click **Complete order**.

<Frame>
  <img src="https://mintcdn.com/memberful/piu8OqoFPVjI8Aw6/images/manage-your-members/pause-a-subscription/suspend-order.png?fit=max&auto=format&n=piu8OqoFPVjI8Aw6&q=85&s=8ff8d4e752f5c58b9b7c3e74e564c252" alt="Suspend order" width="1440" height="767" data-path="images/manage-your-members/pause-a-subscription/suspend-order.png" />
</Frame>

Memberful allows 30 days for you to recover the payment before counting it toward churn. We mark it paid again if the order is reactivated by [marking it as complete.](/member-management/payments-and-access/refund-or-suspend-an-order/#complete-order-un-suspend)

<RelatedDocs
  link1={{
url: "/member-interface/account/update-their-personal-information/",
label: "Learn how members can manage their personal information.",
}}
  link2={{
url: "/member-interface/subscription/manage-their-subscriptions/",
label: "Learn how members can manage their subscriptions.",
}}
  link3={{
url: "/member-management/subscription-management/admin-member-management/",
label:
  "Learn how admins can manage members from the Memberful dashboard.",
}}
/>
