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.
Is it just me or can anyone else not access the mem.......:D

Only joking, this last page has actually had me in stitches with the MM problem!

Anyway, i have to admit, the forums seem to be looking much better this morning, whether that's through more changes or the fact my eyes are getting used to it, i don't know, i can see some of the new fucntionality being useful though. Keep up the good work guys, i'm sure it'll get there in the end.
 
I'm missing the collapse forums so much! :) the dark theme helps a lot over-all!
Using tampermonkey?
Here's a script to add collapsable forum function:
Code:
// ==UserScript==
// @name         Forum Collapse
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Collapseable forums on main listing page
// @author       touch
// @match        http*://forums.overclockers.co.uk*
// @grant        none
// ==/UserScript==

(function() {
    var cols = getCollapsed();
    var ids = cols.split(",");
    for(var i = 0; i <ids.length; i++) {
collapseView(ids[i]);
    }
    var titles = document.getElementsByClassName("nodeTitle");
    for (var x = 0; x < titles.length; x++) {
        if(titles[x].parentNode.className == "categoryText"){titles[x].prepend("+/-  ");}
        titles[x].addEventListener('click', toggleView, false);
}})();
function toggleView(evt){

    if (evt.target !== this)
    return;
if(evt.target.className.indexOf("collapsed") === -1)
{
   evt.target.className += " collapsed";
   evt.target.parentNode.parentNode.parentNode.childNodes[3].style.display = "none";
   collapse(evt.target.parentNode.parentNode.parentNode.id.split(".")[1]);
}
    else{
   evt.target.className = evt.target.className.replace(" collapsed","");
   evt.target.parentNode.parentNode.parentNode.childNodes[3].style.display = "block";
   expand(evt.target.parentNode.parentNode.parentNode.id.split(".")[1]);
    }
}
function collapseView(id){
    var titles = document.getElementsByClassName("node_"+id);
    for (var i = 0; i < titles.length; i++) {
    titles[i].children[0].children[0].children[0].className += " collapsed";
      titles[i].childNodes[3].style.display = "none";
}
}
function collapse(id) {
    var col = getCollapsed();
    col+=","+id;
    document.cookie = "collapsed=" + col + ";path=/";
}
function expand(id) {
    var col = getCollapsed();
    var remove = ","+id;
    var newcol = col.replace(remove, "");
    document.cookie = "collapsed=" + newcol + ";path=/";
}
function getCollapsed() {
    var name = "collapsed=";
    var decodedCookie = decodeURIComponent(document.cookie);
    var ca = decodedCookie.split(';');
    for(var i = 0; i <ca.length; i++) {
        var c = ca[i];
        while (c.charAt(0) == ' ') {
            c = c.substring(1);
        }
        if (c.indexOf(name) === 0) {
            return c.substring(name.length, c.length);
        }
    }
    return "";
}
 
Is there a mod or way to make the alerts more clever?

Eg, I get an alert to say there is a new post in this thread. But if I look at the post without clicking on the alert, the alert remains behind and I have to mark the alert as read.

Hope that makes sense?
 
How do you get rid of a draft response? I was going to post something in another thread but then decided not to. Now whenever I go to that thread my response is filled in. No matter how many times I delete it, it's always there ready to be posted when I go to that thread

I get this as well, really annoying.

Delete it, and save an empty draft. It worked for me.
 
If I've turned off the thing that displays my online status, should I still see the green corner on my profile box next to my own posts? From a UX point of view it makes it look like the setting doesn't work, even if it's not visible to other users.
 
When trying to select the bottom couple of lines on mobile, the cursor refuses to go that low and only allows me to select the third line up. Sometimes submitting the post with the errors and then editing it afterwards works OK.

Occasionally when pressing the return button on mobile it will submit the post rather than starting a new line as I would expect it to.

Anyone else having these issues? May just be my phone?
 
I LOL'd so hard.

loldhard.png
 
Status
Not open for further replies.
Back
Top Bottom