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

# How members update their personal information

> See how members update their personal information in their Memberful account, including name, email, password, and the address used for receipts and notices.

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 cover how members can update their personal information and custom fields, download order receipts as PDFs, and update their payment details.

## Update their profile

From the account menu item, a member can update their name, email, password, address (if required), and custom fields (if there are any). They can also add a photo to their profile using [Gravatar](https://en.gravatar.com/).

<Frame>
  <img src="https://mintcdn.com/memberful/OaD5TLHVZDRU9-NS/images/member-interface/update-their-personal-information/member-profile.png?fit=max&auto=format&n=OaD5TLHVZDRU9-NS&q=85&s=207546535a728ea3838ef62b048d9281" alt="Member profile" width="1440" height="770" data-path="images/member-interface/update-their-personal-information/member-profile.png" />
</Frame>

## Update their custom fields

Members can update their custom field(s) from the Preferences section of their profile.

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

<Frame>
  <img src="https://mintcdn.com/memberful/OaD5TLHVZDRU9-NS/images/member-interface/update-their-personal-information/member-update-custom-fields.png?fit=max&auto=format&n=OaD5TLHVZDRU9-NS&q=85&s=47c5a272d5717addf9f0a0acf3e70dd5" alt="Update custom fields from member profile" width="1440" height="770" data-path="images/member-interface/update-their-personal-information/member-update-custom-fields.png" />
</Frame>

<Frame>
  <img src="https://mintcdn.com/memberful/OaD5TLHVZDRU9-NS/images/member-interface/update-their-personal-information/member-update-custom-fields-detail.png?fit=max&auto=format&n=OaD5TLHVZDRU9-NS&q=85&s=b6270673efe80736f94a6b52c07b731e" alt="Detail - Update custom fields from member profile" width="1440" height="742" data-path="images/member-interface/update-their-personal-information/member-update-custom-fields-detail.png" />
</Frame>

## Download order receipts as PDFs

Members can access and download their order receipts (i.e. invoices) as PDFs from the Orders menu item in their account.

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

<Frame>
  <img src="https://mintcdn.com/memberful/OaD5TLHVZDRU9-NS/images/member-interface/update-their-personal-information/manage-account.png?fit=max&auto=format&n=OaD5TLHVZDRU9-NS&q=85&s=4b2d941ffa86a071c828fdc62e50698d" alt="Access and download receipts" width="1440" height="828" data-path="images/member-interface/update-their-personal-information/manage-account.png" />
</Frame>

Our order emails also include a link at the bottom to download the invoice as a PDF.

<Frame>
  <img src="https://mintcdn.com/memberful/OaD5TLHVZDRU9-NS/images/member-interface/update-their-personal-information/email-footer-pdf.png?fit=max&auto=format&n=OaD5TLHVZDRU9-NS&q=85&s=acf599a136ea89adea5e0d72226abacb" alt="PDF download in order emails" width="1440" height="607" data-path="images/member-interface/update-their-personal-information/email-footer-pdf.png" />
</Frame>

## Update payment details

Members can view and update their payment details from the Update Card menu item in their account. If accessing their account from Safari, they can also switch their payment method to Apple Pay, or in Chrome to Google Pay.

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

<Frame>
  <img src="https://mintcdn.com/memberful/OaD5TLHVZDRU9-NS/images/member-interface/update-their-personal-information/account-update-payment-details.png?fit=max&auto=format&n=OaD5TLHVZDRU9-NS&q=85&s=8c35d32adde8a5f418a2273ddad19f77" alt="Update credit card" width="1440" height="785" data-path="images/member-interface/update-their-personal-information/account-update-payment-details.png" />
</Frame>

<RelatedDocs
  link1={{
url: "/member-interface/extras/faq-for-your-member-page/",
label: "Add a membership FAQ page to your site.",
}}
/>
