# Can the "Share" button be removed or hidden?

**URL:** https://meta.discourse.org/t/can-the-share-button-be-removed-or-hidden/35312
**Category:** Support
**Created:** [11월 6, 2015, 9:31오후 UTC](https://meta.discourse.org/t/can-the-share-button-be-removed-or-hidden/35312 "2015-11-06T21:31:23Z")
**Posts on this page:** 7
**Page:** 1

<div class="post-metadata">

### Author: ![MikeTaber](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/miketaber/32/116726_2.png) [@MikeTaber](https://meta.discourse.org/u/MikeTaber)
#### Post date: [11월 6, 2015, 9:31오후 UTC](https://meta.discourse.org/t/can-the-share-button-be-removed-or-hidden/35312/1 "2015-11-06T21:31:23Z")

</div>

I’m running an invite-only community and I don’t want the “Share” button to show up at the bottom of the posts. I see an option to select whether Twitter, Facebook, Google+ and Email show up on the share dialog, but I don’t see anything to disable the Share option entirely.

I managed to hide this option on the individual post level by removing “share” from the “post menu” setting, but this is at the post level, not the topic level. Any ideas?

---

<div class="post-metadata">

### Author: ![Steven](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/steven/32/187890_2.png) [@Steven](https://meta.discourse.org/u/Steven)
#### Post date: [11월 6, 2015, 9:37오후 UTC](https://meta.discourse.org/t/can-the-share-button-be-removed-or-hidden/35312/3 "2015-11-06T21:37:55Z")

</div>

In the settings then share links, you can delete Twitter, Facebook, Google+ and email and it should be ok

---

<div class="post-metadata">

### Author: ![MikeTaber](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/miketaber/32/116726_2.png) [@MikeTaber](https://meta.discourse.org/u/MikeTaber)
#### Post date: [11월 6, 2015, 9:42오후 UTC](https://meta.discourse.org/t/can-the-share-button-be-removed-or-hidden/35312/4 "2015-11-06T21:42:39Z")

</div>

I know that and I’ve done so but it still shows the button and provides a URL. If none of those sharing options are available, there’s no real point to even showing the “Share” button. I’d prefer to simply remove the option entirely for the user because it’s an invite only community.

And I do realize they can go to their address bar and copy/paste the URL but the point is to discourage people who don’t read the guidelines from seeing the “Share” button and copy/pasting that link elsewhere.

It’s more of a UX thing than anything else.

---

<div class="post-metadata">

### Author: ![Steven](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/steven/32/187890_2.png) [@Steven](https://meta.discourse.org/u/Steven)
#### Post date: [11월 6, 2015, 9:49오후 UTC](https://meta.discourse.org/t/can-the-share-button-be-removed-or-hidden/35312/5 "2015-11-06T21:49:20Z")

</div>

With this css, I was able to hide the button :

```
.ember-view.share.btn.standard {
    width: 0px;
    margin-left: -30px;
    visibility: hidden;
}

```

I think it could be done more elegantly, but it works

---

<div class="post-metadata">

### Author: ![MikeTaber](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/miketaber/32/116726_2.png) [@MikeTaber](https://meta.discourse.org/u/MikeTaber)
#### Post date: [11월 6, 2015, 9:53오후 UTC](https://meta.discourse.org/t/can-the-share-button-be-removed-or-hidden/35312/7 "2015-11-06T21:53:16Z")

</div>

That’ll work well enough. Thanks!

---

<div class="post-metadata">

### Author: ![system](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/system/32/443519_2.png) [@system](https://meta.discourse.org/u/system)
#### Post date: [11월 21, 2018, 3:10오전 UTC](https://meta.discourse.org/t/can-the-share-button-be-removed-or-hidden/35312/8 "2018-11-21T03:10:45Z")

</div>



---

<div class="post-metadata">

### Author: ![vinothkannans](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/vinothkannans/32/86465_2.png) [@vinothkannans](https://meta.discourse.org/u/vinothkannans)
#### Post date: [11월 21, 2018, 3:12오전 UTC](https://meta.discourse.org/t/can-the-share-button-be-removed-or-hidden/35312/9 "2018-11-21T03:12:32Z")

</div>


