New forum! Post bugs & errors in here *CHECK FIRST POST FOR ISSUES FIRST - P.S. THE MM IS OPEN*

Status
Not open for further replies.
For Chrome users, here is a simple TamperMonkey Script. Removes the Facebook square button and all of the Share elements at the base of the page.

Code:
// ==UserScript==
// @name         Custom Style Sheet OcUK
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Remove Social Media Elements from OcUk Forums
// @author       Sin_Chase
// @match        https://forums.overclockers.co.uk/*
// @grant        none
// ==/UserScript==

function addGlobalStyle(css) {
    var head, style;
    head = document.getElementsByTagName('head')[0];
    if (!head) { return; }
    style = document.createElement('style');
    style.type = 'text/css';
    style.innerHTML = css;
    head.appendChild(style);
}

addGlobalStyle('.fa-facebook-square { display: none !important; }');
addGlobalStyle('.sharePage { display: none !important; }');
This works perfectly, thanks a lot!
 
Is there an issue with previous posts?

I looked at my previous content, and it's showing my last one as back in September 2016 - i've got at least 100 since then.
 
I do t know if it's been asked yet. (Great look by the way)

But can we minimise the forum sections we don't want to see ? I'm not really interested in hardware etc. I can't see the usual arrows.
 
Status
Not open for further replies.
Back
Top Bottom