When Adblock Plus has the "Block social media icons tracking" option enabled, it injects a stylesheet that, among other things, explicitly sets display: none !important on any element with the class .sharing-link. This causes the sharing link to be hidden in Conclave (and is really not Conclave's fault at all).
As far as I can tell, the class .sharing-link is only referenced once in the code base, to set display: inline-block—it might be worth changing the class name or targeting the element in another manner.
When Adblock Plus has the "Block social media icons tracking" option enabled, it injects a stylesheet that, among other things, explicitly sets
display: none !important
on any element with the class.sharing-link
. This causes the sharing link to be hidden in Conclave (and is really not Conclave's fault at all).As far as I can tell, the class
.sharing-link
is only referenced once in the code base, to setdisplay: inline-block
—it might be worth changing the class name or targeting the element in another manner.