View Single Post
  #85  
Old 06-26-2016, 01:15 PM
Sorn Sorn is offline
Planar Protector

Sorn's Avatar

Join Date: Jun 2010
Location: Anywhere but Plane of Mischief
Posts: 2,107
Default

Quick fix solution!

If you use Firefox, get an add-on called Greasemonkey and make a new user script.

Make it look like this:

Code:
// ==UserScript==
// @name        Hide RNF
// @namespace   p99hideRNF
// @include     http://www.project1999.com/forums/index.php
// @version     1
// @grant       none
// ==/UserScript==

// RnF
var tbody = document.getElementById("collapseobj_forumbit_16");
var rnfrow = tbody.children[6];

rnfrow.style.visibility = "hidden";
In the preferences window under Included Pages, add http://www.project1999.com/forums/index.php and https://www.project1999.com/forums/index.php so that the script will run on both versions of the forum front page.

It ends up looking like this:
Screen Shot 2016-06-26 at 11.09.29 AM.jpg

This only hides it for YOU in the browser you have both Greasemonkey and this script loaded. Everyone else can RnF as usual and it does not affect the actual forum.

(PS: here is Off Topic if you also want to hide that: )
Code:
var offtrow = tbody.children[8];

offtrow.style.visibility = "hidden";
__________________

Retouched all faces for the EQClassicHD Texture Pack
Retired from p99
Reply With Quote