# Add link to external SSO profile to profile page

**URL:** <https://meta.discourse.org/t/add-link-to-external-sso-profile-to-profile-page/59027>\
**Category:** Support\
**Created:** [2017年三月13日 21:33 UTC](https://meta.discourse.org/t/add-link-to-external-sso-profile-to-profile-page/59027 "2017-03-13T21:33:46Z")\
**Posts on this page:** 1\
**Showing post:** 9

<div class="post-metadata">

**Author:** ![cpradio](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/cpradio/32/4970_2.png) [@cpradio](https://meta.discourse.org/u/cpradio)\
**Post date:** [2017年三月13日 22:34 UTC](https://meta.discourse.org/t/add-link-to-external-sso-profile-to-profile-page/59027/9 "2017-03-13T22:34:55Z")

</div>

PR Submitted (ping @nec286)  
[https://github.com/discourse/discourse/pull/4753](https://github.com/discourse/discourse/pull/4753)

@pfaffman, you would use this #howto to implement it via a site customization (also see example below)

> [@Using Plugin Outlet Connectors from a Theme or Plugin](https://meta.discourse.org/t/adding-plugin-outlets-using-site-customizations/32727):
>
> Discourse includes hundreds of Plugin Outlets which can be used to inject new content or replace existing contend in the Discourse UI. ‘Outlet arguments’ are made available so that content can be customized based on the context. Choosing an outlet To find the name of a plugin outlet, search Discourse core for “\<PluginOutlet”, or use the [plugin outlet locations](https://meta.discourse.org/t/plugin-outlet-locations-theme-component/100673) theme component. (e.g. topic-above-posts). Wrapper outlets Some outlets in core look like \<PluginOutlet @name="foo" /\>. These allow you…

```plaintext
<script type='text/x-handlebars' data-template-name='/connectors/above-user-preferences/sso_notice'>
{{#if siteSettings.enable_sso}}
  modified contents of connectors/above-user-preferences/sso_notice.hbs file goes here
{{/if}}
</script>  

```

---

_[View the full topic](https://meta.discourse.org/t/add-link-to-external-sso-profile-to-profile-page/59027)._
