d2jsp
Log InRegister
d2jsp Forums > d2jsp > General Help > Disabling Someone's Signature
Closed New Topic
Member
Posts: 10,967
Joined: May 30 2019
Gold: 167.69
Warn: 10%
Feb 8 2025 06:44am
Is there a way to disable seeing signature of just 1 person? I want to see other sigs/avatars but there's just 1 that actually bothers me.

https://forums.d2jsp.org/user.php?i=392540
whenever i see this user's signature (especially on phone), it's so god damn flashy i can't even force myself to read what's written in posts above/below it.
i'll get a seizure lol
Member
Posts: 16,460
Joined: Jan 22 2008
Gold: 690.00
Feb 8 2025 07:36am
You can add the image link https://i.postimg.cc/g2tHhXz0/mai-ff3-flame2.gif to adblock filter and it will block that image.

This post was edited by mikacz on Feb 8 2025 07:37am
Member
Posts: 10,967
Joined: May 30 2019
Gold: 167.69
Warn: 10%
Feb 8 2025 08:52am
You can add the image link https://i.postimg.cc/g2tHhXz0/mai-ff3-flame2.gif to adblock filter and it will block that image.


I don't use ad blocker on my phone so that would in theory help while being on PC but I don't particularly have issue with 400x150 image on a 32 inch screen, it's on phone that it's absolute cancer

I'm wondering if JSP has a system to block certain users sig

This post was edited by SylvesterStallone on Feb 8 2025 08:52am
Member
Posts: 6,318
Joined: Mar 12 2021
Gold: 0.79
Feb 8 2025 09:01am
I don't use ad blocker on my phone so that would in theory help while being on PC but I don't particularly have issue with 400x150 image on a 32 inch screen, it's on phone that it's absolute cancer

I'm wondering if JSP has a system to block certain users sig


You can only disable everyones sigs at once

The only other alternative is this -> https://greasyfork.org/en/scripts/488938-fokse-s-d2jsp-post-blocker

I'm not sure if it works on mobile, but I use it on PC and have a ton of peoples posts blocked just because of their sussy sigs.


e: Maybe you could rip something like this too ->
Code

// ==UserScript==
// @name Topic and Post remover
// @namespace http://tampermonkey.net/
// @version 1
// @description Removes posts and topics if user ID of author/post author is in bannedUsers. You add more users by using this format = ["id","id","id"] etc.
// @author Ehmmkay
// @include https://forums.d2jsp.org/topic.php*
// @include https://forums.d2jsp.org/post.php
// @include https://forums.d2jsp.org/forum.php*
// @icon https://www.google.com/s2/favicons?domain=d2jsp.org
// @require https://code.jquery.com/jquery-latest.js
// @grant none
// ==/UserScript==

var bannedUsers = ["701571"];

function parsePosts() {
$('div.ppc').each(function () {
var userId = $(this).find('div.pU a').attr('href').split("=")[1];
if (bannedUsers.indexOf(userId) !== -1) {
this.remove();
}
});
}

function parseTopics() {
$('tr').each(function () {
if ($(this).find('td:nth-child(3) a').attr('href') && ~$(this).find('td:nth-child(3) a').attr('href').indexOf('user.php?i=')) {
var userId = $(this).find('td:nth-child(3) a').attr('href').split("=")[1];
if (bannedUsers.indexOf(userId) !== -1) {
this.remove();
}
}
});
}

parsePosts();
parseTopics();


This post was edited by Whao on Feb 8 2025 09:03am
Member
Posts: 4,450
Joined: Mar 5 2008
Gold: 10.50
Feb 8 2025 04:54pm
Not the smoothest solution but if you are not logged in you don't see sigs or avatars
Member
Posts: 10,967
Joined: May 30 2019
Gold: 167.69
Warn: 10%
Feb 9 2025 01:05am
Not the smoothest solution but if you are not logged in you don't see sigs or avatars


Then i can just disable everyone's sigs while being logged in too.
Not an option
Jr Admin
Posts: 18,932
Joined: Aug 11 2011
Gold: 28,641.07
Trader: Mediator
Feb 9 2025 03:22am
The only official way to remove signatures, is by using the toggle found on your settings page: https://forums.d2jsp.org/settings.php which would remove all user signatures.

You can use browser extensions, such as ublock origin, to block specific images you don't want to see on the internet.
For smartphones, Mull browser on Android supports extensions, and to my knowledge, Orion browser on iPhone.
Go Back To General Help Topic List
Closed New Topic