There is no way to turn off avatars?
Until they can get a suitable add-on, your best bet is probably to install AdBlock and use the element hiding helper. Or if you know CSS, then a Sylish script should work.For example, shortylickens now has a breast as his avatar. I like to browse while I'm running 1 to 3 minute experiments at work and can't really do anything practical during that short period of time. I can't browse now with porn as forced images.
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("forums.anandtech.com") {
.sidebar {
display:none;
}
.avatarHolder.is-expanded {
display:none;
}
.hasRightSidebar .mainContent {
margin-right: 20px;
width: 100%;
}
}
Upon further reflection, the issue is that while it's easy to hide the images with CSS, it's hard to change images into URLs, which is what we'd want for inline images. Even XenForo doesn't make this easy, from what I'm reading. I'm not sure there's a current add-on (or skin) that actually supports disabling inlines...
It should be possible with greasemonkey if you want to try your hand at javascript.I'm surprised this is not a default feature. Basically it kills the forum for me.
It should be possible with greasemonkey if you want to try your hand at javascript.
// ==UserScript==
// @name ImgReplace
// @namespace forums.anandtech.com/
// @description Replace IMG tag with Link to IMG in messages
// @version 1
// @grant none
// Select Images to Replace
var tags = document.querySelectorAll('img.bbCodeImage');
// This loops over all of the <img> tags.
for (var i = 0; i < tags.length; i++) {
// This replaces the img with a link
var tagURL = tags[i].src;
tags[i].outerHTML = '<a href="'+tagURL+'" target="_blank" class="externalLink" rel="nofollow">'+tagURL+'</a>';
}
// ==/UserScript==
$(document.getElementsByClassName("redactor_MessageEditor")[0]).load(function(){
//Do Stuff
}