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

# Choose your currency

> Choose the currency Memberful uses for plan prices and checkout. Sell in your members' local currency to create a smoother purchase experience worldwide.

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 show you how to support a **single currency** per Memberful account to charge members.

From your Memberful dashboard via *Settings → Localization* you can select your currency while in [test mode](/account-management/modes/manage-your-account-in-test-mode/) or if your live site has 0 active subscriptions.

<img src="https://mintcdn.com/memberful/rh_I8e0Vok-s0pFM/images/settings/choose-your-currency/select-your-currency.png?fit=max&auto=format&n=rh_I8e0Vok-s0pFM&q=85&s=dd4d765a81d9be463352d16ca6349021" alt="Choose your currency" width="1440" height="911" data-path="images/settings/choose-your-currency/select-your-currency.png" />

If you need to change your currency in a live account and you have **active subscriptions,** <ContactSupport label="please contact us" />.

<Callout icon="triangle-alert" color="#FFE044">
  If members purchase a subscription using a currency different than yours, they may incur credit card conversion fees. Members should consult with their credit card issuer as they are responsible for any of those fees.
</Callout>

<RelatedDocs
  link1={{
url: "/configuration/localization/choose-your-language/",
label: "Choose your language.",
}}
  link2={{
url: "/configuration/taxes/collect-taxes/",
label: "Collect taxes from members.",
}}
/>
