> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # Method name: siteMembers.makeProfilePublic() # Method Link: https://dev.wix.com/docs/sdk/frontend-modules/members/current-member/make-profile-public.md # Method Description: Joins the currently logged-in member to the site community and sets their profile to public. `makeProfilePublic()` returns a Promise that resolves to a member object when the member's profile privacy is updated. When a member's profile is public, they have access to the site's [Members Area](https://support.wix.com/en/article/site-members-about-the-members-area) features, such as chat, forum, and followers. Also, their profile is visible to other members and site visitors. > **Notes:** > - The member data in the resolved promise will only include custom fields from a site's contacts if those [fields are added to a site's members in a dashboard](https://support.wix.com/en/article/site-members-customizing-your-member-profile-fields). > - The frontend Members APIs aren't fully functional when previewing a site. View a published version of a site to see their complete functionality. # Method Permissions: # Method Permissions Scopes IDs: undefined # Method Code Examples: ## Make the currently logged-in member's profile public ```javascript import { currentMember } from '@wix/site-members'; // ... currentMember.makeProfilePublic() .then((updatedMember) => { const newPrivacyStatus = updatedMember.privacyStatus; console.log('Privacy status was changed to', newPrivacyStatus); }) .catch((error) => { console.error(error); }); /* Returned updatedMember object: * { * "_id": "f32cbc51-a331-442b-86c2-2c664613e8b9", * "_createdDate": "2021-08-02T23:14:42Z", * "_updatedDate": "2021-08-02T23:14:58.345Z", * "lastLoginDate": "2021-08-12T19:46:33Z", * "loginEmail": "claude.morales@example.com", * "contactId": "f32cbc51-a331-442b-86c2-2c664613e8b9", * "status": "APPROVED", * "privacyStatus": "PUBLIC", * "activityStatus": "ACTIVE", * "profile": { * "nickname": "Claude Morales", * "slug": "claudemorales" * }, * "contactDetails": { * "firstName": "Claude", * "lastName": "Morales", * "phones": [ * "0747-769-460" * ], * "emails": [ * "claude.morales@example.com" * ], * "addresses": [ * { * "country": "GB" * }, * { * "id": "f0f4d905-488d-44db-9080-fc29078cfad5", * "addressLine": "9373 Park Avenue", * "addressLine2": "Berkshire", * "city": "Ely", * "subdivision": "GB-ENG", * "country": "GB", * "postalCode": "PD50 8EU" * } * ], * "customFields": {} * } * } */ ```