The profile embed has many tabs, but did you know it may open on a specific tab? A useful feature when promoting a user to upgrade their plan, invite a team member etc.

Profile embeds can be opened in a popup overlaying the page, or embedded on the page.

To open the popup profile embed to a specific tab with the link approach add ?tab=[tabKey] to the url:

<a href="https://[your-subdomain].outseta.com/profile?tab=account#o-authenticated">Profile (Account)</a>

To open the popup profile embed to a specific tab with the button approach add an additional tab data attribute data-tab=[tabKey]:

<button data-o-profile="1" data-mode="popup" data-tab="plan">Profile (Plan)</button>

To open the on-page profile embed to a specific tab add an additional tab data attribute data-tab=[tabKey]:

<div data-tab="teamMemberInvite"></div>

The tab options available are accountbilling, passwordChange, plan, planCancel, planChange, profile, team and teamMemberInvite.

Full demo on Code Sandbox