Status
Not open for further replies.

EL-Warez

Active Member
1,402
2009
69
0
Hello mates..

i want you to clear me 2 things..the first one is in
Code:
pornbb.org
when u make a search and u click in the results it gives you a random porn pop up which i believe is an ad..is it??B-)

And second i believe it is a paid ad and if yes how can u make that and are there any ad sites that offer such thing?or is it a script??

Thank you!
 
20 comments
This answer answers which question man??

And if it is about the site that offers such adds i am not looking for porn..just clean ones..

Let me explain you my idea..i do not want to fill all my forum with ads so i can earn something and i do not want members to donate for my forum..i will work with advertisers so all can win..now i just want a good clean ad site and the way to do it like pornbb..is it a script??a page??something??
 
So is there any free script that can put an pop up ad in a certain forum??when u click to enter applications(example) a pop up will show up and be an ad...
 
First off, you shouldn't add ads on a warez site if it hasn't got any big traffic. Secondly, I'm sure somebody posted here sites that allow ads on warez sites, search for it.
 
First my site is not a warez one..so many of them anyway..i can find a ad site..thousands of them..my point is how i can implaint the ad in a specific area..when they click to one forum a popup appears..thats all
 
Ad this somewhere in your header:


Code:
<SCRIPT LANGUAGE="JavaScript">
function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=[B]468[/B],height=80,left = 278,top = 344');");
}
</script>

(468,80 numbers represent the size of the ad)

Now add this code to the category you want the pop-up to appear..

For vBulletin it would be:

Edit templates - forumdisplay - on top add:
Code:
<if condition="in_array($forum['forumid'], array(1,2))"><BODY onLoad="javascript:popUp('http://yoursite.com/popu-up.html')"></if>

where "$forum['forumid'], array(1,2) represent the forum id where you want the ad pop up.

Now create a html file like:

Code:
<title>Our Sponsor</title>
PLACE YOUR AD CODE HERE


..should work.
 
Yes, i did in the past. PM me your username! :P

Yes, save an html page called "pop-up.html" with your ad code, on your root folder and that will pop up.

Remember to set the correct size and the correct forum id's. (if you are doing this on vBulletin)
 
Thanx mania.
If i want the popup to appear on all the pages and not only on a particular category then what to do?
 
then just use this:

Code:
<BODY onLoad="javascript:popUp('http://yoursite.com/popu-up.html')">

...without the <if> tags.
 
Ok.its doing...but the problem is it is being blocked by the popup blocker..
Is there any way I can skip that?
 
Status
Not open for further replies.
Back
Top