Forum Feedback How to remove avatars in display mode?

Status
Not open for further replies.

agantuk

Forerunner
I don't see any option to do so.

I see avatars in the new threads option (it wasn't there earlier in vB), and want to disable that. Not really interested in the unwanted graphic. Can it be done away with somehow? In the preferences pane there are only skin and notifications mentioned
 
@rads, there are workarounds, but then that would need to be done in each browser instance. Would have been awesome if it was an out of the box option.
 
Last edited by a moderator:
@rads, there are workarounds, but then that would need to be done in each browser instance. Would have been awesome if it was an out of the box option.
Give it time, you will get used to it and may even like it.
 
Last edited:
Below is some code that works with Tampermonkey(Chrome) , i guess the same works with greasemonkey (firefox) . Solves your problem @agantuk
Code:
// ==UserScript==
// @name      TE Script
// @namespace  http://facebook.com/challapradyumna
// @version    0.1
// @description Some Fixes
// @include    http://www.techenclave.com/community/find-new/*
// @include    http://techenclave.com/community/find-new/*
// @match      http://*/*
// @copyright  2013, Challa Pradyumna
// ==/UserScript==
function addJQuery(callback) {
  var script = document.createElement("script");
  script.setAttribute("src", "http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js");
  script.addEventListener('load', function() {
    var script = document.createElement("script");
    script.textContent = "(" + callback.toString() + ")();";
    document.body.appendChild(script);
  }, false);
  document.body.appendChild(script);
}
 
// the guts of this userscript
function main() {
  $(".posterAvatar").remove();
}
 
// load jQuery and execute the main function
addJQuery(main);
 
Last edited by a moderator:
  • Like
Reactions: Rahul++ and agantuk
Below is some code that works with Tampermonkey(Chrome) , i guess the same works with greasemonkey (firefox) . Solves your problem @agantuk
Code:
// ==UserScript==
// @name      TE Script
// @namespace  http://facebook.com/challapradyumna
// @version    0.1
// @description Some Fixes
// @include    http://www.techenclave.com/community/find-new/*
// @include    http://techenclave.com/community/find-new/*
// @match      http://*/*
// @copyright  2013, Challa Pradyumna
// ==/UserScript==
function addJQuery(callback) {
  var script = document.createElement("script");
  script.setAttribute("src", "http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js");
  script.addEventListener('load', function() {
    var script = document.createElement("script");
    script.textContent = "(" + callback.toString() + ")();";
    document.body.appendChild(script);
  }, false);
  document.body.appendChild(script);
}
 
// the guts of this userscript
function main() {
  $(".posterAvatar").remove();
}
 
// load jQuery and execute the main function
addJQuery(main);

Good work mate! :-) <3 JQuery.. Awesomeness..
 
Last edited by a moderator:
  • Like
Reactions: rads
Status
Not open for further replies.