XF 2.0 How do I turn off / delete the "share" links on a default widget page?

Bonsai Coder

Active member
Craziest thing I have ever seen... It appears that if you put any content on an otherwise brand-new and empty widget framework page, the site automatically sticks a bunch of "share" links at the bottom of the page? Even though there is already a "share this content" widget?

How do I get these things off my widget page?

screenshot-www.bonsainut.com-2018-01-19-20-05-44.webp
 
Note: that will remove it from every page if you just want to be able to do it per page instead then edit the node and add this to the template html:

Code:
<xf:css>
.blockMessage .shareButtons {
    display:none;
}
</xf:css>
 
Top Bottom