Does ignoring work on this forum? It doesn't for me.
I just realized it was ignore PMs. Is there a general ignore function?
I don't think so, but this can easily be implemented using jquery/greasemonkey
Here's a quick and dirty script that you may need to modify to make it work for all possible urls. If you're not sure how to, I can update it later.
// @name SMF: Ignore User
// @namespace n/a
// @description SMF: Ignore User
// @include http://bitcointalk.org/*
// @include https://www.bitcoin.org/smf/*
// @require http://code.jquery.com/jquery-1.3.2.min.js
// ==/UserScript==
// Path to script for parsing incoming SMS messages
var ignore_ids = [262,381]; // Replace with user ids you want to ignore
function gm_load() {
if (window.location.href.match(/https?:\/\/(?:www\.)?bitcoin.org\/smf\/(?:index\.php)?\?topic=[0-9.]*/)) {
$("td.poster_info b a").each(function(index) {
////http://bitcointalk.org/index.php?action=profile;u=683
for (var i=0; i
if ($(this).attr("href").match(re)) {
$(this).parent().parent().parent().parent().parent().parent().parent().parent().parent().parent().parent().hide();
}
}
});
}
}
$(document).ready(function() { gm_load(); });