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 Feed-icon

1 point
login to vote
Philipp Krüger script's author
Posted Sep 29, 2008

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

1 point
login to vote
Posted Aug 27, 2008

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!

1 point
login to vote
Philipp Krüger script's author
Posted Feb 21, 2008

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! :)

1 point
login to vote
lookor user
Posted Feb 12, 2008

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);
}

1 point
login to vote
elk scriptwright
Posted Feb 12, 2008

Its on the group site, on the right under the group menu. something with t-shirts :)

1 point
login to vote
Philipp Krüger script's author
Posted Feb 11, 2008

hey elk, when does this ad show? i just can't find it...

1 point
login to vote
elk scriptwright
Posted Feb 9, 2008

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);
}

1 point
login to vote
elk scriptwright
Posted Feb 8, 2008

Thats a cool bug! *lol*

1 point
login to vote
Philipp Krüger script's author
Posted Feb 8, 2008

it was working, elk - rather too well one might say... it hid my friend's page because of the behaviour i mentioned earlier. :p

1 point
login to vote
Philipp Krüger script's author
Posted Feb 8, 2008

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)

1 point
login to vote
elk scriptwright
Posted Feb 8, 2008

Mh? Its still working, isnt it?

1 point
login to vote
Philipp Krüger script's author
Posted Feb 8, 2008

argh! they changed it again! i'm working on it...

1 point
login to vote
ingomueller.net scriptwright
Posted Feb 7, 2008

Wow, what a quick update! Thanks for your great extension!!

1 point
login to vote
Philipp Krüger script's author
Posted Feb 7, 2008

GOD they're annoying! Again they change everything... I removed all those stupid ads, boxes, etc...

1 point
login to vote
Philipp Krüger script's author
Posted Feb 5, 2008

I altered the script to hide the "Schaukasten" they've been showing lately as well...

1 point
login to vote
Enrico P. user
Posted Jan 21, 2008

Remove "Schaukasten"
Add
for (var i=0; i<node>
if (node[i].parentNode.innerHTML.match(/Schaufenster/)) {
node[i].parentNode.parentNode.parentNode.removeChild(node[i].parentNode.parentNode);
}
}

1 point
login to vote
Philipp Krüger script's author
Posted Apr 19, 2007

I updated the script to remove the stupid telegram they're showing now.

1 point
login to vote
Philipp Krüger script's author
Posted Apr 16, 2007

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.

1 point
login to vote
MyName user
Posted Jan 31, 2007

Add something like

var adSidebar = document.getElementsByTagName("div")[1];
if (adSidebar) {
adSidebar.parentNode.removeChild(adSidebar);
}

to hide the ad too.

You could comment on this script if you were logged in.