StudiVZ Announceblocker
Last update on Sep 29, 2008
Removes the annoying announcement box to the left and I've updated it to also remove the Telegram they've been showing lately.
Also check out StudiVZ Autologin.
You could comment on this script if you were logged in.
19 comments
You could comment on this script if you were logged in.

login to vote
Hey rebel_leader,
could you possibly send me a screenshot, or rather - if you have something like that - your skype/icq/msn/whatever nick so we can talk it through thoroughly? You could also drop me an email at zyrill@gmx.ch The behaviour you're describing is rather strange and I have no idea what the cause might be. Even more so since you seem to be the only person experiencing those bugs...
Cheers, Philipp
login to vote
Hey there, Philipp,
1. I do have a problem with it, as your script somehow blocks certain, single profiles, more precisely all of it right to the picture. So the whole right column, all dates about university, quotes, classes, groups, pin board etc. It leaves just a blank space.
(It is definitely your script, when I deactivate it, all works fine.) What can I do against it?
2. Which of these scripts in the comments do I have still to add to get them working? I'm not sure about that, also where to do that? And how do you "name" the box on the left side unter "Privatsphäre" (Privacy)? It's still there on my site.
Thanks in advance!
login to vote
i can only recommend http://userscripts.org/scripts/show/5841 it changes most of the colors to blue so as to get rid of the stupid pink layout. and i updated the script to remove some ads, too.
=> use studivz without looking like a little girl playing barbie! :)
login to vote
here are some more (banner on the right side, at logout + the "do you know"):
var ad = document.getElementById("ad160x600");
if(ad != null){
ad.parentNode.removeChild(ad);
}
var ad = document.getElementById("AdLogout");
if(ad != null){
ad.parentNode.removeChild(ad);
}
var ad = document.getElementById("ad300x250");
if(ad != null){
ad.parentNode.removeChild(ad);
}
var ad = document.getElementById("Kds");
if(ad != null){
ad.parentNode.removeChild(ad);
}
login to vote
Its on the group site, on the right under the group menu. something with t-shirts :)
login to vote
hey elk, when does this ad show? i just can't find it...
login to vote
There is a new advertisment: In the group-window under the group-menu.
If you add this under line 36, its gone ;)
var ad = document.getElementById("ShopLink");
if(ad != null){
ad.parentNode.removeChild(ad);
}
login to vote
Thats a cool bug! *lol*
login to vote
it was working, elk - rather too well one might say... it hid my friend's page because of the behaviour i mentioned earlier. :p
login to vote
i updated the script to not inadvertently remove elements that should not be removed (if anywhere on the profile the words "Neuigkeiten", "Telegramm" and the likes showed up, the whole profile would be hidden)
login to vote
Mh? Its still working, isnt it?
login to vote
argh! they changed it again! i'm working on it...
login to vote
Wow, what a quick update! Thanks for your great extension!!
login to vote
GOD they're annoying! Again they change everything... I removed all those stupid ads, boxes, etc...
login to vote
I altered the script to hide the "Schaukasten" they've been showing lately as well...
login to vote
Remove "Schaukasten" e.parentNode);
Add
for (var i=0; i<node>
if (node[i].parentNode.innerHTML.match(/Schaufenster/)) {
node[i].parentNode.parentNode.parentNode.removeChild(node[i].parentNod
}
}
login to vote
I updated the script to remove the stupid telegram they're showing now.
login to vote
I use Adblock+ to hide ads and it works like a charm - for the sake of testing your proposed addition to my script I disabled it but there still was no ad. Is it only sometimes there or what happened to it? For the time being I left my script as it is since I don't want to include untested code. But thanks all the same, should I at one point encounter the ad, I'll be certain to use your code.
login to vote
Add something like
var adSidebar = document.getElementsByTagName("div")[1];
if (adSidebar) {
adSidebar.parentNode.removeChild(adSidebar);
}
to hide the ad too.