Archived Comments (locked)

in
Subscribe to Archived Comments 21 posts, 8 voices



Jesse Andrews Admin

The following is an archive of comments made before threaded discussions was implemented (November 16th, 2008)

 
Philipp Krüger Script's Author

So: would you like to have the choice about which boxes to hide and which to show? Should I add that possibility through custom user commands like I did with the "Do you know...?" or would you prefer it if the options were to be set in the source? Or would that be a completely useless feature since all the ads are superfluous anyway and noone likes to see them? I'm open to suggestions!

 
Philipp Krüger Script's Author

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

 
rebel_leader User

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!

 
Philipp Krüger Script's Author

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

 
lookor User

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

 
elk Scriptwright

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

 
Philipp Krüger Script's Author

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

 
elk Scriptwright

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

 
elk Scriptwright

Thats a cool bug! *lol*

 
Philipp Krüger Script's Author

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

 
Philipp Krüger Script's Author

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)

 
elk Scriptwright

Mh? Its still working, isnt it?

 
Philipp Krüger Script's Author

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

 
ingomueller.net Scriptwright

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

 
Philipp Krüger Script's Author

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

 
Philipp Krüger Script's Author

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

 
Enrico P. User

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

 
Philipp Krüger Script's Author

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

 
Philipp Krüger Script's Author

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.

 
MyName User

Add something like

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

to hide the ad too.

Cross
Presentational HTML allowed.
Use <code> for inline code and <pre> for code blocks. Use &lt; and &gt; for literal < and >.
We help break paragraphs and link your links.
or cancel