Log in

View Full Version : Adsense after first post


Pages : [1] 2

artonex
09-13-2005, 10:00 PM
Hey guys i think many of you will find this very usefull :)

With the template edit you can display adsense or banner after every 1st post. i have chosen to use my amazon affilite code.

Add this to the bottom of your postbit template.

Demo (http://www.sigstorage.com/upload/1426-Untitled-1.jpg)

<if condition="!$GLOBALS['FIRSTPOSTID']">

$spacer_open
<div style="padding:0px 0px $stylevar[cellpadding]px 0px">

<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="thead" align="left">Sponsored Links</td>
</tr>
<tr>
<td class="alt1" align="center">
<adsense code here>
</if>
</td>
</tr>
</table>

</div>
$spacer_close

</if>

jluerken
09-14-2005, 11:26 AM
Hi,

I want to have the adsense stuff for people NOT in specific groups.

For example: Admins, mods, staff etc. should not get the adsense stuff.

Can you give an example how to modify your template to make this possible?

btw. thanks for sharing :D

jugo
09-14-2005, 12:01 PM
Didn't Kirby post this somewhere??

Thanks anyway.

Andreas
09-14-2005, 12:04 PM
Yup.
https://vborg.vbsupport.ru/showpost.php?p=757010&postcount=2 :)

Mental Note: Tagging the post was a good idea :D

junkiesnetwork
09-14-2005, 04:00 PM
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="thead" align="left">Sponsored Links</td>
</tr>
<tr>
<td class="alt1" align="center">
<adsense code here>
</if>
</td>
</tr>
</table>

This idea sounds great but i tried using it on my board but it did not work.
i copied this code and pasted at the end of postbit template as you said and i put all the adsense code in this space u provided , if i am not mistaken. (<adsense code here> )
Could you please tell me where i went wrong??
Thanks

sajjid
09-14-2005, 05:02 PM
try this one
<if condition="$post[postcount] == 1">
$spacer_open
<div style="padding:0px 0px $stylevar[cellpadding]px 0px">

<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" <td align="center">
<tr>
<td class="thead" align="left">SpinZone Sponsored Links</td>
</tr>
<tr>
<td class="alt1" align="center">
ADSENSE CODE HERE

</td>

</tr>
</table>

</div>
$spacer_close

</if>

change the text what ever you want where its says spinzone sponsered links

amykhar
09-14-2005, 05:51 PM
What's more fun and challenging - because of ajax issues, is adsense in the last post. ;) That really gets the ad right where the reader's eyes are.

http://www.eaforums.com/forums/364919-post1.html

Find:

<!-- message -->
<div id="post_message_$post[postid]">$post[message]</div>
<!-- / message -->


Add above:

<if condition="(($post[postcount]==1) or ($post[islastshown] and !$GLOBALS['vbulletin']->GPC['ajax']))">


<span id="google" style="float:left;margin:2px;" width="340" height="290" align="center" valign="top">
put banner code here
</span></if>

Andreas
09-14-2005, 06:10 PM
Hmm, keeping database read marking in mind:
Wouldn't the first unread post be the best place?
Cause the last Post doesn't necessarily get read - the first unread post will.

amykhar
09-14-2005, 06:22 PM
True. But, is there a conditional for it?

Andreas
09-14-2005, 06:24 PM
There must be as Posts carry Icons for Read/Unread.
So if this Icon changes to Unread for the first time it is the right Post.

dieselpowered
09-14-2005, 08:12 PM
Yup.
https://vborg.vbsupport.ru/showpost.php?p=757010&postcount=2 :)

Mental Note: Tagging the post was a good idea :D

Kirby forgive my ignorance, however, where does this post show how to do a conditional based on the usergroup?

I am going to be adding adsence, however, do not want contributing members or sponsors to see them.

Any help is appreciated!!

Andreas
09-14-2005, 08:18 PM
I've posted this often already, but i'll post it once again :)

<if condition="!is_member_of($bbuserinfo, x, y, z) AND !$GLOBALS['FIRSTPOSTID']">

dieselpowered
09-14-2005, 08:28 PM
I've posted this often already, but i'll post it once again :)

<if condition="!is_member_of($bbuserinfo, x, y, z) AND !$GLOBALS['FIRSTPOSTID']">

Sorry, you are going to fly out from Germany and kill me, however, I assume I put the usergroup number of the usergroup I do not want to see this in place of the x, y, z??

Thanks :)

Andreas
09-14-2005, 08:29 PM
Yep (regarding the replacement of x, y and z).

dieselpowered
09-14-2005, 08:35 PM
Yep (regarding the replacement of x, y and z).

LOL I thought you were talking about the flying out part ;)

Thanks Kirby!!

Hey I seem to remember a thread one of the vBulletin Devs put out in regards to adding adsense....it had quite a few examples. Do you remember that?

dieselpowered
09-14-2005, 08:46 PM
That is odd, I placed the usergroup 1 (admin) in that code and it still shows the adsense?

**edit** disregard, it did remove it, however, completely did something odd with the formatting?? When I get home I will get a screen print.

artonex
09-14-2005, 08:47 PM
I've posted this often already, but i'll post it once again :)

<if condition="!is_member_of($bbuserinfo, x, y, z) AND !$GLOBALS['FIRSTPOSTID']">


Thanks kirby works great :D

Andreas
09-14-2005, 08:48 PM
Usergroup 1 is Guest, not Admin?

dieselpowered
09-14-2005, 08:51 PM
Usergroup 1 is Guest, not Admin?

I know....I meant 6....sorry about that.

Somehow it messes up the formatting on the page, I will get a screenshot to show. Thanks as always Kirby!

Gio~Logist
09-14-2005, 09:13 PM
Hi,

I want to have the adsense stuff for people NOT in specific groups.

For example: Admins, mods, staff etc. should not get the adsense stuff.

Can you give an example how to modify your template to make this possible?

btw. thanks for sharing :D


try replacing


<if condition="!$GLOBALS['FIRSTPOSTID']">


With:


<if condition="!$GLOBALS['FIRSTPOSTID'] and
$vbulletin->userinfo[usergroupid] != 'x' ">



Then replace x with the usergroupid that you do NOT want this ad to show for.

dieselpowered
09-14-2005, 09:20 PM
try replacing


<if condition="!$GLOBALS['FIRSTPOSTID']">


With:


<if condition="!$GLOBALS['FIRSTPOSTID'] and
$vbulletin->userinfo[usergroupid] != 'x' ">



Then replace x with the usergroupid that you do NOT want this ad to show for.

Thank you...unfortunately, it still shows for admin??

artonex
09-14-2005, 09:22 PM
you must be doing something crazy xtremeoff-road as kirbys code works for me.

Gio~Logist
09-14-2005, 09:23 PM
Keep adding

and $vbulletin->userinfo[usergroupid] != 'x'

For every usergroup that you do not want to have to see that.

Andreas
09-14-2005, 09:23 PM
I think this Code won't work, as $vbulletin is not within the Scope of the Postbit Class.

Gio~Logist
09-14-2005, 09:24 PM
I can be wrong though.

dieselpowered
09-14-2005, 09:27 PM
you must be doing something crazy xtremeoff-road as kirbys code works for me.

Don't get me wrong the code does work, however, throws off the formatting.

I will get a screen shot when I get home.

Xplorer4x4
09-23-2005, 08:53 PM
I tried a few methods I found at vb.com and vb.org. This one is the only one that would work for me. Just one problem is that after I make a quick reply, the sponsoered link header apears BUT the ads do not show. In other words it hsouldn't show up at all. Oh well it got ads betwen the first and second post so I'm happy!

joeychgo
09-24-2005, 08:27 AM
What's more fun and challenging - because of ajax issues, is adsense in the last post. ;) That really gets the ad right where the reader's eyes are.

http://www.eaforums.com/forums/364919-post1.html






amy - you might want to check with Google. The way you have the ad placed inside the post may violate their TOS. You can email adsense and ask for a review.

Chad F.
09-26-2005, 04:38 AM
<a href="http://img339.imageshack.us/img339/1489/bannerproblem0cy.gif" target="_blank">http://img339.imageshack.us/img339/1...problem0cy.gif</a>

^ Does anyone else get this problem after editing a post?..

Marco van Herwaarden
09-26-2005, 04:47 AM
I am not using this hack, but something similar i created myself, and i have the same if using quick reply. Doesn't bother me enough to search for a fix.

GrendelKhan{TSU
09-27-2005, 01:06 AM
Hmm, keeping database read marking in mind:
Wouldn't the first unread post be the best place?
Cause the last Post doesn't necessarily get read - the first unread post will.

interestingly, I find I read the last post more often than the first post on many forums (except on this forum...where the first post is the meat and where the download is).

or at least, I read the last post first as that's what shows up on the forumindex, and many threads are ones I follow for new posts.

just making a point. ;)

amykhar
09-27-2005, 01:18 AM
I am not using this hack, but something similar i created myself, and i have the same if using quick reply. Doesn't bother me enough to search for a fix.

Marco, my code fixes the quick reply problem.

trilljester
09-27-2005, 09:05 PM
Marco, my code fixes the quick reply problem.

Amy, I see on your site you have Adsense in your header, and also in the messages. Do you notice that sometimes the Adsense ads don't show up in the message thread, and are blank?

This happens often when there's multiple Adsense ads on the same page for me.

jribz
09-27-2005, 10:00 PM
trilljester, not to answer for Amy, but I don't think that's an issue related to the hack, if there aren't enough ads to display or google adsense bot has not picked the page up yet, which is rare, it will display the alternate color or alternate ad you have in place. So just specify an alternate ad in your adsense code for those times when it doesn't show up.

amykhar
09-27-2005, 10:15 PM
Yep. Generally, my adsense goes to my alternate ad broker though.

trilljester
09-27-2005, 10:31 PM
Okie doke, I'll do that.

It looks great except when there's a quote in the last message, then it shifts everything off by a little. I'm torn now between using Amy's or the "just after the first post" deal. Hrmmm...decisions decisions... :nervous:

amykhar
09-28-2005, 12:01 AM
I tinkered with my quote template to make the div not have a width of 100%. When I removed that, it solved the problem.

Chad F.
09-28-2005, 03:55 AM
Marco, my code fixes the quick reply problem.

Amy, can you please give me the link to your code? I just searched around and I wasn't able to find it but maybe I'm just overlooking it..

trilljester
09-28-2005, 08:51 PM
I tinkered with my quote template to make the div not have a width of 100%. When I removed that, it solved the problem.

I set mine to 70% on both the div and table in my quote template and that fixed the problem. Thanks so much Amy! :cheeky:

ukbill69
10-01-2005, 01:59 PM
might want to add it to postbit_legacy

ukbill69
10-01-2005, 02:27 PM
Also easier if you make the <adsense code here> into a phrase like $vbphrase[postadvert]

and then it would be easy to update and not search through code everytime to change.

thenetbox
10-02-2005, 03:07 AM
I put this in postbit_legacy and when I use firefox to post a quick reply it goes to a Blank page. Now that I have removed it from postbit_legacy it has started working fine again.
It happens with KirbyDEs code as well.

Is there another way to get this working? or do we know why this is happening?

This was working okay before I updated.

thanks :)

Aceman
10-03-2005, 12:26 PM
After getting this running.. I've noticed that my QUICK EDIT no longer works?

I used the following code:


<!-- Google Ads for NON members -->

<if condition="!is_member_of($bbuserinfo, 2,5,6,7,8,11,18) AND !$GLOBALS['FIRSTPOSTID']">

$spacer_open
<div style="padding:0px 0px $stylevar[cellpadding]px 0px">

<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="thead" align="left">Sponsored Links</td>
</tr>
<tr>
<td class="alt1" align="center">
**ADSENSE CODE HERE**
</if>
</td>
</tr>
</table>

</div>
$spacer_close

</if>


<!-- END Google Ads for NON Members -->


Anyone know why this would be happening?

Aceman
10-03-2005, 12:30 PM
Question: Why does the </if> go before the </td> rather then placing it after the </div> tag?? would this fix this?

(I'll test and see)

Aceman
10-03-2005, 12:37 PM
PUT THE </if> after $spacer_close and everything is working fine now.

PS: postbit_legacy template.

dastar
10-03-2005, 01:27 PM
Never mind.

Xplorer4x4
10-03-2005, 01:58 PM
PUT THE </if> after $spacer_close and everything is working fine now.

PS: postbit_legacy template.

THANK YOU! I didn;t know what hack was causing the problem. Thank you!

This still has not fixed the issue when you save though.

Mijae
10-04-2005, 12:49 AM
One thing that I noticed is that if you use the quick reply, you'll get a second instante of the Sponsored Links table, but without the google adsense code. It goes away when you refresh.

Not a big deal, but something I discovered. Probably just my forums :P

dieselpowered
10-04-2005, 01:11 AM
Use this code:

</div>
<!-- / post $post[postid] popup menu -->

<if condition="$show['spacer']">
</div>
$spacer_close
</if>
<!-- / post #$post[postid] -->

<if condition="$post[postcount] == 1">

$spacer_open
<div style="padding:0px 0px $stylevar[cellpadding]px 0px">

<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="thead" align="left">Sponsored Links</td>
</tr>
<tr>
<td class="alt1" align="center">
BANNER CODE HERE
</td>
</tr>
</table>

</div>
$spacer_close

</if>

You can see an example HERE (http://www.atvpros.net/forums/showthread.php?t=3)

talkhost
10-05-2005, 06:10 PM
What's more fun and challenging - because of ajax issues, is adsense in the last post. ;) That really gets the ad right where the reader's eyes are.

http://www.eaforums.com/forums/364919-post1.html

Find:

<!-- message -->
<div id="post_message_$post[postid]">$post[message]</div>
<!-- / message -->


Add above:

<if condition="(($post[postcount]==1) or ($post[islastshown] and !$GLOBALS['vbulletin']->GPC['ajax']))">


<span id="google" style="float:left;margin:2px;" width="340" height="290" align="center" valign="top">
put banner code here
</span></if>



Do you know how to put the ads in the first and last post of each page of the thread, instead of just the first post of the first page..

I'm also having a problem with using the quick reply. The ads don't show in the last post unless the page is refreshed..

hivelord
10-05-2005, 09:42 PM
Yes, you have an extra </if> in the code. Just take it out like so:
<if condition="!$GLOBALS['FIRSTPOSTID']">

$spacer_open
<div style="padding:0px 0px $stylevar[cellpadding]px 0px">

<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="thead" align="left">Sponsored Links</td>
</tr>
<tr>
<td class="alt1" align="center">
ADSENSE HERE
</td>
</tr>
</table>

</div>
$spacer_close

</if>

Works great. I was having a small Template issue with the old code.

Shoemoney
10-07-2005, 01:32 PM
are you guys using quick reply? My forum seems to hang with this code and quick reply..

dsotmoon
10-07-2005, 01:39 PM
is there a way to get this to post after the first post on each page, page2,3.4. etc ?

dieselpowered
10-07-2005, 02:57 PM
are you guys using quick reply? My forum seems to hang with this code and quick reply..

The Javascript in the adsense is messing it up.

If you notice, you can probably click on the quick reply in the first post, however, everything after the first post will not work.

If your thread has multiple pages, you will notice that you can click on the quick reply of the first post of every page and it will work. All others do not :(

dsotmoon
10-07-2005, 03:20 PM
If you notice, you can probably click on the quick reply in the first post, however, everything after the first post will not work.


QR works on every post on my forums with the code you posted above

dieselpowered
10-07-2005, 03:27 PM
QR works on every post on my forums with the code you posted above

Do you have it set up that the user must click to use quick reply?

Or can they just start typing?

dsotmoon
10-07-2005, 09:00 PM
Do you have it set up that the user must click to use quick reply?

Or can they just start typing?

its always at the bottom or they can click QR from any post to go to it

dieselpowered
10-07-2005, 09:14 PM
its always at the bottom or they can click QR from any post to go to it

I understand that....my question was can they just start typing in the Quick Reply or do they need to hit the QR button?

dsotmoon
10-07-2005, 09:27 PM
I understand that....my question was can they just start typing in the Quick Reply or do they need to hit the QR button?

oh sorry, they can just start typing in it

dastar
10-07-2005, 11:45 PM
Try this code to eliminate the problem with the quick reply button not working.

After submitting a reply via the QR box, FireFox hangs on me unless I use the smaller, "link unit" google ads.





<if condition="$post[postcount] % 10 == 1">

$spacer_open
<div style="padding:0px 0px $stylevar[cellpadding]px 0px">

<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="thead" align="left">Sponsored Links</td>
</tr>
<tr>
<td class="alt1" align="center">
Adsene Code here.
</td>
</tr>
</table>

</div>
$spacer_close

</if>

dsotmoon
10-09-2005, 04:23 PM
i have confirmed now too that the following code hangs in firefox using the quick reply, anyone know a way to fix it?

<if condition="!is_member_of($bbuserinfo, 6, 7, 17, 18) AND !$GLOBALS['FIRSTPOSTID']">

$spacer_open
<div style="padding:0px 0px $stylevar[cellpadding]px 0px">

<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="thead" align="left">Sponsored Links</td>
</tr>
<tr>
<td class="alt1" align="center">
ADSENSE CODE HERE </td>
</tr>
</table>

</div>
$spacer_close

</if>

Funchiestz
10-10-2005, 03:48 PM
i have confirmed now too that the following code hangs in firefox using the quick reply, anyone know a way to fix it?

<if condition="!is_member_of($bbuserinfo, 6, 7, 17, 18) AND !$GLOBALS['FIRSTPOSTID']">

$spacer_open
<div style="padding:0px 0px $stylevar[cellpadding]px 0px">

<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="thead" align="left">Sponsored Links</td>
</tr>
<tr>
<td class="alt1" align="center">
ADSENSE CODE HERE </td>
</tr>
</table>

</div>
$spacer_close

</if>

so do i can not work... nothing changes, thanx anyway

UK Jimbo
10-10-2005, 06:09 PM
Similar hack but does random positioning
https://vborg.vbsupport.ru/showthread.php?t=98057

Aaron RV
10-12-2005, 07:02 AM
not work. :disappointed:

nobita
10-12-2005, 11:55 AM
not work. :disappointed:

it works very good :)>-

Demo: http://www.vimaru.org/forum/showthread.php?p=27120#post27120

jluerken
10-12-2005, 12:58 PM
Hi,

I agree to Funchiestz and dsotmoon, Quick Reply is not working after the adsense for all usergroups who 'must' see it :D
In the first post its working fine, the ads quick reply stops working.

I removed the adsense code to test if it has something to do with this but it has not.

I tested with IE and Firefox and in both Quick Reply is not working after the first post.

Must have something to do with:

<if condition="!is_member_of($bbuserinfo, 5,6,7) AND !$GLOBALS['FIRSTPOSTID']">

I will ask KirbyDE if he can help. He is a genius in vB Coding.

Andreas
10-12-2005, 01:13 PM
Untested, but what about

<if condition="!is_member_of($bbuserinfo, 5,6,7) AND !$GLOBALS['FIRSTPOSTID'] AND !$_POST['ajax']">

jluerken
10-12-2005, 03:18 PM
Untested, but what about

<if condition="!is_member_of($bbuserinfo, 5,6,7) AND !$GLOBALS['FIRSTPOSTID'] AND !$_POST['ajax']">


No that did not solve the problem.
I deleted the whole IF statement and only entered a simple text line.
Even then then quick reply is not working anymore after the first post.

Seems to be deeper in vBulletin

jluerken
10-12-2005, 03:28 PM
Ok its working for me now.

It seems that it had something to do with the <div> Tags.

Here my solution:

At the end of the postbit template at:


<!-- ADs after first forum post -->
<if condition="!is_member_of($bbuserinfo, 5,7) AND !$GLOBALS['FIRSTPOSTID']">
<if condition="$show['spacer']">
<div>
$spacer_open
</if>
<table class="tborder" id="post$post[postid]" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="alt2" width="17%" nowrap>
$vbphrase[google_ads_hint]
</td>
<td class="alt2" width="83%">
<center>

YOUR AD HERE

</center>
</td></tr></table>

<if condition="$show['spacer']">
</div>
$spacer_close
</if>
</if>


Create a global phrase called "google_ads_hint" to get some text beside your ads like on my screenshot.
Remove the whole TD tag if you don't want this.

cedced
10-12-2005, 04:28 PM
have version for vbb 3.03 ?

dsotmoon
10-12-2005, 04:41 PM
that code still hangs up on QR for me in firefox :ermm:

oezer
10-12-2005, 06:58 PM
trilljester, not to answer for Amy, but I don't think that's an issue related to the hack, if there aren't enough ads to display or google adsense bot has not picked the page up yet, which is rare, it will display the alternate color or alternate ad you have in place. So just specify an alternate ad in your adsense code for those times when it doesn't show up.

i did another alternate type of adsense, but it displays me nothing.. have you any ideas?

regards

Xplorer4x4
10-20-2005, 08:22 AM
Good news and bad news. I have a fix, but it does not stop at the first post! If you use this be advised it will place Ads between EVERY post!

REPLACE
<if condition="!$GLOBALS['FIRSTPOSTID']">
with
<if condition="$post['postcount']=1"><if>

So maybe with this some one can get a fix to make this stop AFTER the first post?

EDIT:On second notice, it places full ads under the first 3 posts. Then it apears to form a empty sponsored link table under the rest of the post. This happen in FireFox.

IN IE..it apers after the first post, and using the quick reply forms an empty table under the last post.

Arto
10-22-2005, 01:43 PM
Good news and bad news. I have a fix, but it does not stop at the first post! If you use this be advised it will place Ads between EVERY post!

EDIT:On second notice, it places full ads under the first 3 posts. Then it apears to form a empty sponsored link table under the rest of the post. This happen in FireFox.

No surprise there, as the AdSense Terms of Service explicitly limits you to 3 AdSense blocks per page ;) ...I suspect trying to display more than 3 ads is in fact a good way to get your account flagged for inspection :ermm:

oezer
10-22-2005, 10:42 PM
I suspect trying to display more than 3 ads is in fact a good way to get your account flagged for inspection :ermm:

on my forum i have 2 different views of adsense but they display only one ad.. have you any ideas?

regards

Arto
10-23-2005, 11:22 AM
on my forum i have 2 different views of adsense but they display only one ad.. have you any ideas?

That can happen when Google doesn't have enough targeted ads to fill your page view inventory. You can either try to improve the AdSense targeting on the forum, show less ad blocks per page (to ensure there's enough ads for the one you do show), or configure an Alternate URL in AdSense to show ads or banners from another ad network in cases when Google won't serve you.

Improving your AdSense targeting and revenue is really a science unto itself; I recommend you read up on the topic on forums such as Digital Point or Site Point.

Xplorer4x4
10-24-2005, 11:45 PM
No surprise there, as the AdSense Terms of Service explicitly limits you to 3 AdSense blocks per page ;) ...I suspect trying to display more than 3 ads is in fact a good way to get your account flagged for inspection :ermm:

True but atleast its a start for getting this firefox bug fixxed.

Xplorer4x4
10-25-2005, 03:06 AM
Well I finally have found the fix. This is tested and working in firefox, and does not create any more of those anoying empty tables when you edit.

REPLACE
<if condition="!$GLOBALS['FIRSTPOSTID']">
WITH
<if condition="$post[postcount] % $vboptions[maxposts] == 1">

If you need to exclude a user group form seeing them,
<if condition="$post[postcount] % $vboptions[maxposts] == 1 AND $vbulletin->userinfo[usergroupid] != 'x' ">

banshee
10-25-2005, 01:18 PM
**Installed**

Works great thanks, has anyone notices an increas in revenue from this add-in? I average only $5 a day right now not sure if that is good or bad but I will be curious if I get more revenue because of this or not. I know I get ads on some threads that have nothing to do with my site because of some off-topic threads.

Slapyo
10-25-2005, 02:45 PM
i've been going through this thread but can't seem to find code that works. :/ i see a bunch of different versions posted up.

i'm just looking to place 1 ad after the first post.

banshee
10-25-2005, 05:35 PM
I used the code a the very top of every page. Worked for me.

Xplorer4x4
10-25-2005, 09:45 PM
I used the code a the very top of every page. Worked for me.

It will work....if your using Internet Explorer or something mostly IE compatibly such as Avant Browser or AOL Explorer browser.

If you or any members of your forum use FireFox it causes the browser to hang after using the quick reply.

Xplorer4x4
10-25-2005, 09:53 PM
i've been going through this thread but can't seem to find code that works. :/ i see a bunch of different versions posted up.

i'm just looking to place 1 ad after the first post.

https://vborg.vbsupport.ru/showpost.php?p=804199&postcount=78
There are several diffrent versions but mine is the only proper fix to prevent any hangs in FireFox.

My fix will actually show the ads under the first post of EVERY page and not just the first page.

Slapyo
10-25-2005, 10:41 PM
https://vborg.vbsupport.ru/showpost.php?p=804199&postcount=78
There are several diffrent versions but mine is the only proper fix to prevent any hangs in FireFox.

My fix will actually show the ads under the first post of EVERY page and not just the first page.

Sweet thanks .... I'd say most use IE but a few here and there use FF.

So just take the code from the top of the page and then replace the IF statement with the one in your post?

Xplorer4x4
10-25-2005, 11:01 PM
^Your right IE still leads the market but....

As of the end of September, Mozilla's Firefox web browser is getting closer to the 10% margin. As reported on October 1st, 2005, Firefox is now used by 9.2% of internet users across the globe, while Microsoft's Internet Explorer is still leading with an astonishing 78%.
Credit: Wired.com (http://www.wired.com/)

We have to keep in mind that while MOST use IE FireFox is quickly catching on and we have to take FireFox users into consideration. If you haven;t tried FireFox yet I highly suggest doing so. It is by far the better safer broswer. Plus you have to love the tab system. It can be found at http://www.mozilla.org/products/firefox/

Or I recomend avant, which takes most of the FireFox featuers but is built around IE for the most part making it more compatible then FireFox.
www.avant.com (http://www.avant.com/)

If you don;t like them, you can always uninstall and go back to IE. ;)

So just take the code from the top of the page and then replace the IF statement with the one in your post?

Yep, just replace the <if> statment and your good to go.

Slapyo
10-25-2005, 11:33 PM
Yup yup ... I use both browsers.

Kihon Kata
10-26-2005, 03:19 AM
What code amy? This one (https://vborg.vbsupport.ru/showpost.php?p=773130&postcount=7)? Marco, my code fixes the quick reply problem.

Slapyo
10-26-2005, 03:48 AM
hrm, i have a width of 760 and i use the 728x90 width and it sticks out the sides. :/ gonna have to work on it. ended up using a smaller sized ad.

DanLai
10-26-2005, 03:56 AM
I have a problem, when i click on the #1 link on top-right corner, the single post interface shows up.

and the adsense looks ugly:

http://talkmusic.org/showpost.php?p=3310&postcount=1

How to fix it??

Xplorer4x4
10-26-2005, 08:10 AM
What code amy? This one (https://vborg.vbsupport.ru/showpost.php?p=773130&postcount=7)?

Does that version support postbit legacy style?

Tony you can use this code if you would like to display the ads between the second to last and last posts on a page.
<if condition="$post[postcount] % $vboptions[maxposts] == $vboptions[maxposts] - 1">


I have a problem, when i click on the #1 link on top-right corner, the single post interface shows up.

and the adsense looks ugly:http://talkmusic.org/showpost.php?p=3310&postcount=1
How to fix it??

Sorry DanLai I cfan;t help, but I wouldn't really worry about it.

Kihon Kata
10-26-2005, 01:31 PM
Does that version support postbit legacy style?

Tony you can use this code if you would like to display the ads between the second to last and last posts on a page.
<if condition="$post[postcount] % $vboptions[maxposts] == $vboptions[maxposts] - 1">




Sorry DanLai I cfan;t help, but I wouldn't really worry about it.

I don't wanna display the ad between the second to the last post. I wanted to know how and what fixed the quick reply issue.

But thanks for tryin'

Xplorer4x4
10-26-2005, 09:05 PM
I wanted to know how and what fixed the quick reply issue.

But thanks for tryin'

https://vborg.vbsupport.ru/showpost.php?p=804199&postcount=78
I fixed it by changing the IF conidtion. If you read the thread everyone tried many diffrent variables for the IF condition but it was always the IF condition causing it to hang.

Here is the proper code:

<if condition="$post[postcount] % $vboptions[maxposts] == 1">

$spacer_open
<div style="padding:0px 0px $stylevar[cellpadding]px 0px">

<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="thead" align="left">Sponsored Links</td>
</tr>
<tr>
<td class="alt1" align="center">
<adsense code here>
</if>
</td>
</tr>
</table>

</div>
$spacer_close

</if>

RGSMDNR
10-30-2005, 11:11 PM
i add this and get nothing on my forums, is it jsut right after the last line in the postbit template?

Xplorer4x4
10-31-2005, 01:30 AM
Looks like you got it working fine to me. ;)

eXtremeTim
10-31-2005, 01:34 AM
https://vborg.vbsupport.ru/showpost.php?p=804199&postcount=78
I fixed it by changing the IF conidtion. If you read the thread everyone tried many diffrent variables for the IF condition but it was always the IF condition causing it to hang.

Here is the proper code:

<if condition="$post[postcount] % $vboptions[maxposts] == 1">

$spacer_open
<div style="padding:0px 0px $stylevar[cellpadding]px 0px">

<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="thead" align="left">Sponsored Links</td>
</tr>
<tr>
<td class="alt1" align="center">
<adsense code here>
</if>
</td>
</tr>
</table>

</div>
$spacer_close

</if>

No when I looked at the code I was seeing two </if> close tags added while only one was opened. I removed that on tonys site and that fixed the quick reply problem on there.

Xplorer4x4
10-31-2005, 01:40 AM
Hmm well it works just fine on my site with the extra </if> but i will proabbly remove that just to be safe.

WiBu
10-31-2005, 03:42 PM
With that code it hangs when the post is about to create a new page. Otherwise it's fine.

Xplorer4x4
11-02-2005, 09:38 AM
Turns out I did delete the extra <if> lol Ok well I personally put it between the secodn to last and last post. I tried to put it after the first unread post but the code i tried will not work in the postbit_legacy template.

smsmasters
11-04-2005, 03:54 PM
How do you stop the code from displaying under PM's?

smsmasters
11-04-2005, 08:50 PM
Why is it sometimes all I get is blank?

Xplorer4x4
11-05-2005, 10:19 AM
How do you stop the code from displaying under PM's?

:ermm: Doesn't for me, are you sure your not thinking about the other ads in thread hack?

Why is it sometimes all I get is blank?

I had to turn on the displayed on framed pages options on for my ads. Sometimes the ads can not target the content of the page if there isn;t enough thread content for the ads to decide what audience to target.

ChrisSy
11-07-2005, 05:19 PM
With that code it hangs when the post is about to create a new page. Otherwise it's fine.

same problem here

Xplorer4x4
11-07-2005, 05:24 PM
Well if you haven't done so then just delete the </IF> right before </TD> if you have not done so already.

There is a whole thread of variations in the quick tips and custimizations forum over at vB in the 3.5 section. However the code for adsence before the last post does cause hangs in firefox everytime.

Snoop-It
11-07-2005, 07:09 PM
Well I finally have found the fix. This is tested and working in firefox, and does not create any more of those anoying empty tables when you edit.

REPLACE
<if condition="!$GLOBALS['FIRSTPOSTID']">
WITH
<if condition="$post[postcount] % $vboptions[maxposts] == 1">

If you need to exclude a user group form seeing them,
<if condition="$post[postcount] % $vboptions[maxposts] == 1 AND $vbulletin->userinfo[usergroupid] != 'x' ">


Nice one dude! It works like a charm!! Thank you!!

ubuntu-geek
11-09-2005, 06:57 PM
What if I wanted to exlcude it from one forum? Is there a variable for that?

krg2k
11-11-2005, 06:04 AM
Xplorer4x4

GREAT JOB man.... it fixed TWO issues
1. when using QR no more extra tables..
2. in my vbgallery now it only shows after the first comment, before it was showing after every single comment on photos ...

so thanks a milllll

romow
11-12-2005, 03:53 AM
i really do NOT recommend using this mod.
after installing the mod, the page loading becomes noticeably slower..

that's because vb has to check "for each reply" whether to display adsense.
i do not want to sacrifice my members' viewing convenience this much.

pelican
11-15-2005, 11:32 PM
i really do NOT recommend using this mod.
after installing the mod, the page loading becomes noticeably slower..

that's because vb has to check "for each reply" whether to display adsense.
i do not want to sacrifice my members' viewing convenience this much.

actually it is just comparing of variables, the check whether to display or not is negligible. it is when the banner is display that will takes time because you are retrieving info from a 3rd party.

MissKalunji
11-16-2005, 04:43 PM
i really do NOT recommend using this mod.
after installing the mod, the page loading becomes noticeably slower..

that's because vb has to check "for each reply" whether to display adsense.
i do not want to sacrifice my members' viewing convenience this much.


just use iframe.....so the whole board will load then the iframe will........no?

MissKalunji
11-16-2005, 05:02 PM
got a small problem when i add the script at the bottom of the postbit legacy

after a while it messes up the template example the 4 first shows up normal then the 5-6 shows up 3 times larger.....

dre
11-20-2005, 09:42 AM
is this availablefor 3.5.1?

MissKalunji
11-20-2005, 10:27 AM
is this availablefor 3.5.1?


this is for 3.5 see in wich thread it is?

theodonnells
11-20-2005, 01:45 PM
What's more fun and challenging - because of ajax issues, is adsense in the last post. ;) That really gets the ad right where the reader's eyes are.

http://www.eaforums.com/forums/364919-post1.html

Find:

<!-- message -->
<div id="post_message_$post[postid]">$post[message]</div>
<!-- / message -->


Add above:

<if condition="(($post[postcount]==1) or ($post[islastshown] and !$GLOBALS['vbulletin']->GPC['ajax']))">


<span id="google" style="float:left;margin:2px;" width="340" height="290" align="center" valign="top">
put banner code here
</span></if>


I tried this code but it puts an ad in the first post and a blank space in the last post ...Any ideas..

romow
11-21-2005, 12:47 AM
no, when a thread gets really big with lots of replies, and there are lots of users browing a forum, that makes a difference.

actually it is just comparing of variables, the check whether to display or not is negligible. it is when the banner is display that will takes time because you are retrieving info from a 3rd party.

Mencius
11-26-2005, 08:01 AM
Can somebody post a screenshot of this haack???

ConqSoft
12-01-2005, 10:04 PM
Any idea how to make it show after the 1st post of EVERY page instead of just the first one?

Thanks

MissKalunji
12-01-2005, 11:51 PM
Any idea how to make it show after the 1st post of EVERY page instead of just the first one?

Thanks

thats what it does

ConqSoft
12-01-2005, 11:57 PM
Oops. Actually, I thought I was replying to another hack that didn't. Now I see that this one does. ;)

romow
12-03-2005, 06:19 AM
As this thread gets bigger with many updates, it's kinda difficult to find out what the most up-to-date and error-free version for this mod is.
Can someone post the clean version?
Is the one posted in the original thread most up-to-date?

MissKalunji
12-03-2005, 11:26 AM
As this thread gets bigger with many updates, it's kinda difficult to find out what the most up-to-date and error-free version for this mod is.
Can someone post the clean version?
Is the one posted in the original thread most up-to-date?

here u go

<if condition="!$GLOBALS['FIRSTPOSTID']">
$spacer_open
<div style="padding:0px 0px $stylevar[cellpadding]px 0px">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center"> <tr> <td class="thead" align="left">Sponsored Links</td> </tr> <tr> <td class="alt1" align="center">
---------- google advertisement -----------------
</td> </tr>
</table> </div>
$spacer_close
</if>

caliman
12-03-2005, 07:07 PM
This rules!
Works great with phpadsnew.

THANK YOU.
(INSTALLED)

Xplorer4x4
12-03-2005, 08:11 PM
As this thread gets bigger with many updates, it's kinda difficult to find out what the most up-to-date and error-free version for this mod is.
Can someone post the clean version?
Is the one posted in the original thread most up-to-date?

Thought you didn;t want to compromise the loading time for member.:rolleyes: There is a search feature, or try readonf from the last page backwards. ;)

MissKalunji
12-03-2005, 09:38 PM
Thought you didn;t want to compromise the loading time for member.:rolleyes: There is a search feature, or try readonf from the last page backwards. ;)


i used an iframe so the whole page loads then th iframe loads up so the loading isnt a problem

Xplorer4x4
12-03-2005, 09:52 PM
I would like to see that code just out of curiosity. :)

Either way your are still making vB calculate where to place the Ad(s), and the ads have to be loaded, so what diffrence does it make? It is still loading thesame amount of data.

Teegtahn
12-04-2005, 03:15 PM
Thanks man, Great help to me & my site - And I've adapted the code to put it in other locations as well.

Thanks again

*Installs

MissKalunji
12-04-2005, 09:47 PM
I would like to see that code just out of curiosity. :)

Either way your are still making vB calculate where to place the Ad(s), and the ads have to be loaded, so what diffrence does it make? It is still loading thesame amount of data.


its true but it will loads the forum first (wich lets u do what u want) then loads the add....i tried both and i saw a diff

but then again im not using it with adsense im using iwth another add company....

Slapyo
12-09-2005, 12:28 AM
what would be the conditional so it doesn't display on the private messages pages?

THIS_SCRIPT != '???????'

Xplorer4x4
12-09-2005, 03:58 AM
its true but it will loads the forum first (wich lets u do what u want) then loads the add....i tried both and i saw a diff

but then again im not using it with adsense im using iwth another add company....

I might try that method although I am thinking to make it work I would have to add my google ads code into a PHP or HTML script. Which I am curious as to which would be the better format to use?

I would like to test it. :)

Xplorer4x4
12-09-2005, 05:25 AM
what would be the conditional so it doesn't display on the private messages pages?

THIS_SCRIPT != '???????'

It seems to me as it would be impossible to display ads in your PMs without editng any of PM templates.

Slapyo
12-09-2005, 01:25 PM
It seems to me as it would be impossible to display ads in your PMs without editng any of PM templates.

Are you saying it doesn't display by default and that to make them show up you have to edit PM templates? If so good ... I just didn't want them showing up in there.

Xplorer4x4
12-09-2005, 03:31 PM
Are you saying it doesn't display by default and that to make them show up you have to edit PM templates? If so good ... I just didn't want them showing up in there.

Yes thats what I am saying, but the hack is adsence after first post, not after first PM, or in PMs...

Slapyo
12-10-2005, 12:33 AM
Yes thats what I am saying, but the hack is adsence after first post, not after first PM, or in PMs...

Awesome.

WhatChaMissin
12-14-2005, 04:27 PM
Use this code:

</div>
<!-- / post $post[postid] popup menu -->

<if condition="$show['spacer']">
</div>
$spacer_close
</if>
<!-- / post #$post[postid] -->

<if condition="$post[postcount] == 1">

$spacer_open
<div style="padding:0px 0px $stylevar[cellpadding]px 0px">

<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="thead" align="left">Sponsored Links</td>
</tr>
<tr>
<td class="alt1" align="center">
BANNER CODE HERE
</td>
</tr>
</table>

</div>
$spacer_close

</if>

You can see an example HERE (http://www.atvpros.net/forums/showthread.php?t=3)

Thanks this worked perfectly for my site

Areku
12-15-2005, 04:15 AM
I know its a shame, but can this hack be adapted to a vb2.x?

Warrior
12-15-2005, 01:09 PM
This hack still does not work with the quick reply for me... only the first post's quick reply icon functions... using this:


<!-- Sponsored Links -->
<if condition="$post[postcount] == 1">

$spacer_open
<div style="padding:0px 0px $stylevar[cellpadding]px 0px">

<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="thead" align="left">Sponsored Links</td>
</tr>
<tr>
<td class="alt1" align="center">

AMAZON AFFILIATE CODE

GOOGLE AFFILIATE CODE


</td>
</tr>
</table>

</div>
$spacer_close

</if>

Warrior
12-15-2005, 04:30 PM
Here is a quick reply compatible version (https://vborg.vbsupport.ru/showthread.php?t=98057&page=1&pp=15) ...

kau
12-18-2005, 07:05 AM
Does this not work with 3.5.2? Does nothing after I add it to the bottom of postbit

harpez
12-18-2005, 09:39 AM
This still works perfectly for me! (like it did with 3.5.0 and 3.5.1) I have honestly NEVER had a problem with it!

Xplorer4x4
12-18-2005, 12:43 PM
Ok its working for me now.

It seems that it had something to do with the <div> Tags.

Here my solution:

At the end of the postbit template at:


<!-- ADs after first forum post -->
<if condition="!is_member_of($bbuserinfo, 5,7) AND !$GLOBALS['FIRSTPOSTID']">
<if condition="$show['spacer']">
<div>
$spacer_open
</if>
<table class="tborder" id="post$post[postid]" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="alt2" width="17%" nowrap>
$vbphrase[google_ads_hint]
</td>
<td class="alt2" width="83%">
<center>

YOUR AD HERE

</center>
</td></tr></table>

<if condition="$show['spacer']">
</div>
$spacer_close
</if>
</if>


Create a global phrase called "google_ads_hint" to get some text beside your ads like on my screenshot.
Remove the whole TD tag if you don't want this.

Hmm i changed it slightly. There was a few extra code in there i think. $spacer_open is being procesed but $spacer_close is not.

<if condition="$post[postcount] == 1">

$spacer_open
<table class="tborder" id="post$post[postid]" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="alt2" width="17%" nowrap>
$vbphrase[google_ads_hint]
</td>
<td class="alt2" width="83%">
<center>

YOUR AD HERE

</center>
</td>


</div>
$spacer_close

</if>

Even with your code it is still not spacing properley.

kau
12-18-2005, 04:41 PM
What am I missing then?

I even simplified it to:

<if condition="$post[postcount] == 1">
test
</if>

In my postbit and even that doesn't work. Nothing shows up!!

kau
12-18-2005, 05:10 PM
<if condition="!$GLOBALS['FIRSTPOSTID']">
test
</if>

That doesn't do anything either.

kau
12-18-2005, 06:18 PM
So I found out that it's not postbit anymore you have to add it to it's postbit legacy

ConqSoft
12-18-2005, 06:20 PM
It can be postbit or postbit_legacy, depending on which option you have chosen for your site.

croportal
12-23-2005, 08:15 PM
what a weird problem

when i put this code:

<if condition="$post[postcount] == 1">
$spacer_open
<div style="padding:0px 0px $stylevar[cellpadding]px 0px">

<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" <td align="center">
<tr>
<td class="thead" align="left">SpinZone Sponsored Links</td>
</tr>
<tr>
<td class="alt1" align="center">
ADSENSE CODE HERE

</td>

</tr>
</table>

</div>
$spacer_close

</if>

all work fine

but when i put this code:

<if condition="!$GLOBALS['FIRSTPOSTID']">

$spacer_open
<div style="padding:0px 0px $stylevar[cellpadding]px 0px">

<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="thead" align="left">Sponsored Links</td>
</tr>
<tr>
<td class="alt1" align="center">
<adsense code here>
</if>
</td>
</tr>
</table>

</div>
$spacer_close

</if>



when i go to post, after post open blank page

Moncal
12-26-2005, 01:28 PM
https://vborg.vbsupport.ru/showpost.php?p=804199&postcount=78
I fixed it by changing the IF conidtion. If you read the thread everyone tried many diffrent variables for the IF condition but it was always the IF condition causing it to hang.

Here is the proper code:

<if condition="$post[postcount] % $vboptions[maxposts] == 1">

$spacer_open
<div style="padding:0px 0px $stylevar[cellpadding]px 0px">

<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="thead" align="left">Sponsored Links</td>
</tr>
<tr>
<td class="alt1" align="center">
<adsense code here>
</if>
</td>
</tr>
</table>

</div>
$spacer_close

</if>

Thanks a lot. You really should release this in it's own thread because it took me ages to find. :)

Xplorer4x4
12-26-2005, 01:35 PM
but when i put this code:

<if condition="!$GLOBALS['FIRSTPOSTID']">

$spacer_open
<div style="padding:0px 0px $stylevar[cellpadding]px 0px">

<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="thead" align="left">Sponsored Links</td>
</tr>
<tr>
<td class="alt1" align="center">
<adsense code here>
</if>
</td>
</tr>
</table>

</div>
$spacer_close

</if>



when i go to post, after post open blank page

As stated earlier there is a second if condition in there causing the hang. In other words remove the if here:
<adsense code here>
</if>

Treasure Quest
01-01-2006, 03:09 PM
Hello,
I installed this hack and it works great.

I would also like to have this displayed after the last post. Where do I add the code?

Greg

Xplorer4x4
01-01-2006, 03:18 PM
Hello,
I installed this hack and it works great.

I would also like to have this displayed after the last post. Where do I add the code?

Greg

You would need to combine the if condition from this hack to the one here:

<if condition="$post['islastshown']">


http://www.vbulletin.com/forum/showthread.php?t=157022
Offers several varations.

Treasure Quest
01-01-2006, 03:36 PM
Thanks,

Then would the code look like this to display the adsense on first and last posts?

<if condition="!$GLOBALS['FIRSTPOSTID']">
<if condition="$post['islastshown']">

$spacer_open
<div style="padding:0px 0px $stylevar[cellpadding]px 0px">

<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="thead" align="left">Sponsored Links</td>
</tr>
<tr>
<td class="alt1" align="center">
<adsense code here>
</if>
</td>
</tr>
</table>

</div>
$spacer_close

</if>

Treasure Quest
01-01-2006, 07:37 PM
I keep getting an error, is there another option I could try?

Greg

Orcun
01-02-2006, 09:16 PM
Which file should I put this hack ? I cant find postbit_legacy

Xplorer4x4
01-02-2006, 10:38 PM
@Treasure Quest, please provide the error as that might hel resolve the problem.

@Orcun, postbit_legacy is a template, not a file.

Treasure Quest
01-03-2006, 12:04 AM
Now when I add this code to the bottom of postbit I'm not getting any banners at all.

<if condition="!$GLOBALS['FIRSTPOSTID']">
<if condition="$post['islastshown']">

$spacer_open
<div style="padding:0px 0px $stylevar[cellpadding]px 0px">

<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="thead" align="left">Sponsored Links</td>
</tr>
<tr>
<td class="alt1" align="center">
<adsense code here>
</if>
</td>
</tr>
</table>

</div>
$spacer_close

</if>

Rukas
01-05-2006, 02:09 AM
I keep getting the blank page after the quick reply problem, and Ive removed the second </if> tag. Any ideas?

bashy
01-07-2006, 02:06 PM
Hi peeps

How can i center this as its to the left atm..?

Regards

Bashy

Matt_270581
01-08-2006, 02:31 AM
I keep getting the blank page after the quick reply problem, and Ive removed the second </if> tag. Any ideas?

Firefox problem. Works fine in IE. I had to remove this as some of my members were complaining about this firefox issue.

There's also an issue with Ad's appearing multiple times after submitting a post and Appearing after Every usernote.

iizeusii
01-08-2006, 11:54 AM
Firefox problem. Works fine in IE. I had to remove this as some of my members were complaining about this firefox issue.

There's also an issue with Ad's appearing multiple times after submitting a post and Appearing after Every usernote.


They also appear after every comment in photopost gallery.

FinestFaces
01-17-2006, 06:16 AM
I'm having the same problem. I removed it as well, it was taking awhile to load.

Snake
01-25-2006, 02:39 PM
How can I show the adsense below the LAST post?

amykhar
01-25-2006, 06:49 PM
Find my code snippet in here and it will tell you how to see which post is last. Then, it's a matter of putting it where you like it.

The other option is to put it in the showthread template right after the posts.

Xplorer4x4
01-25-2006, 07:03 PM
How can I show the adsense below the LAST post?

https://vborg.vbsupport.ru/showpost.php?p=861820&postcount=148
Last line of the post might be of help to you. ;)

And for those of you having problems simply remove the first </if> after <adesnce code here>

vocalise
01-31-2006, 08:57 AM
Hm... if I try to modify the if statement to have the ad only show up after the LAST post, I have the quick reply problem all over again :(

Help?!

amykhar
01-31-2006, 11:33 AM
You have to have that ajax check in there if you are going to put it after the last post.

sbeehre
02-01-2006, 06:17 AM
Its not working for me :( I put the aforementioned code right before
<!-- / post #$post[postid] --> at the bottom of the posbit template and add my google adsense code and it doesnt show anything in the forums like it should! Im running 3.5.2 and my site it www.win2osx.net

Sean James
02-04-2006, 10:25 AM
Im getting a white blank page after people post, how do i fix this?

cd1986
02-04-2006, 10:40 AM
Does anyone know what the code is for removing the adsense ID if a user is logged in and has made the 1st post on a page (so that they cannot click on "their own" ads)?

Sean James
02-05-2006, 12:27 PM
Im getting a white blank page after people post, how do i fix this?

Anyone?

Could this problem be caused by VBSEO?

zendiver
02-05-2006, 09:41 PM
I've posted this often already, but i'll post it once again :)

<if condition="!is_member_of($bbuserinfo, x, y, z) AND !$GLOBALS['FIRSTPOSTID']">
Kirby, I know this is an old post, but I am having trouble understanding why people want to put Google Adsense on their forums only to right away disable them for certain groups. Isn't this kind of a 'kick in the face' to themselves? I mean the whole reason for putting GA on their site is to make money, then all of a sudden they want to automatically disable it. *shrugs*

Why not give those usergroups the OPTION to disable it instead of automatically cutting out potential earnings.

On my site, I have it as an incentive for supporting memberships. This way I don't lose money on it not being displayed. If someone wants to be a supporting member, then, in their UserCP under Misc Options, I have it set up where they can disable it or leave it on.

An example would be:
Disable Google Ads?
If you would like to disable Google Ads in the forums, put a check in the checkbox below. If at anytime you would like to view them, click again to remove the selection.
[checkbox here] Disable Google Ads?

Then conditionals are set up in the 'modifyoptions' template.

Just my thought process. If I have gone through the trouble of implementing Google Adsense on my site, why would I want to instantly remove it without an option.

Just my .02

Andreas
02-06-2006, 11:50 PM
On Planet-Liebe, we have a Paid Subscription "Ads-Free", which works by setting an additional usergroup :)
It would be kinda pointless having the users purchase this sub AND have to tick "Don't show ads", so we disable the ads right when they are in this usergroup.

Makes sense?

zendiver
02-06-2006, 11:58 PM
Makes perfect sense if it is offered as an "Ads Free" subscription. I offer it as the ablity to turn it off if you don't want it. This is offered to my Supporting Members. All others are stuck with it. :)

Being a diving community, there are quite a few adds that come up for travel that have great deals. If one of the users is looking to go on a dive vacation or just traveling, then they are able to turn the ads back on to look at the deals that can come up. When done, they simply tick the box to turn it back off.

ultranerds
02-14-2006, 07:52 AM
Mmm.. I'm trying to get this to work based on which post they are on. i.e;



<if condition="$show['postcount'] == 2 OR $show['postcount']== 5">

$spacer_open
<div style="padding:0px 0px $stylevar[cellpadding]px 0px">

<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="thead" align="left">Sponsored Links</td>
</tr>
<tr>
<td class="alt1" align="center">
ADSENSE CODE HERE
</td>
</tr>
</table>

</div>
$spacer_close

</if>

..but it shows up on ALL of them. Any ideas?

TIA

Xplorer4x4
02-28-2006, 08:05 PM
Anyone?

Could this problem be caused by VBSEO?
No this is a bug in firefox if you use the code in the first post. Remove the </if> condition right after <adsence code here>

pcoskat
04-03-2006, 12:43 AM
What's more fun and challenging - because of ajax issues, is adsense in the last post. ;) That really gets the ad right where the reader's eyes are.

http://www.eaforums.com/forums/364919-post1.html

Is there a way to limit this to specific forums? My members would kill me if I did this all over the board.

fcreature
04-04-2006, 01:58 AM
How do you get the ads to display once in every thread with multiple pages of content?

Like say if one thread had 50 replies - that's 5 pages, so how would I go about doing that?

Danecookie
04-05-2006, 10:27 AM
I have a question please reply :

I alread have that mod installed which shows the banner ad on top of every forum section and inside top of every thread. This one : https://vborg.vbsupport.ru/showthread.php?t=94119&highlight=adsense+banner

Now after adding this mod, (adsense after first post), the ads are not showing on the thread, but they are only showing in the forum section, where threads are listed.

When we open any thread, the top banner dosent show up but only this adsense after first post shows the ad and top one dosent. This problem is comming after i've installed this hack..

can anyone please tell me what to do? to bring back my top banner also.
Thanks

Danecookie
04-07-2006, 09:43 AM
will someone reply?

RDX1
04-08-2006, 12:31 AM
Nevermind, missplaced if statement

Hypocrisy
04-29-2006, 04:57 PM
Hi, is there a way to go around the firefox bug, to not have a blank page after doing a quick reply?

Thanks :)

Freak0204
05-01-2006, 03:07 AM
Thank you for this. :)

Titan85
05-29-2006, 12:14 AM
I installed this and it works good, but right above the sponsored links box, there is this code showing up: if condition="1 == 1">. How do i fix this?

Aceman
06-05-2006, 02:43 PM
This is my code:

However, firefox users are reporting white pages, and in IE 7 after I post with quick reply I'm seeing a small table header with "Sponsored Links" in it.. but nothing (the ads) under it. The ads should only show up after the first post.. not after you post with quick reply. If you post via the "Post Reply" button it seems to work fine.

This is Vbulletin 3.5.4:

<!-- Google Ads for NON members -->
<if condition="!is_member_of($bbuserinfo, 5,7,9,10,11,14) AND !$GLOBALS['FIRSTPOSTID']">

$spacer_open
<div style="padding:0px 0px $stylevar[cellpadding]px 0px">

<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="thead" align="left">Sponsored Links</td>
</tr>
<tr>
<td class="alt1" align="center">
<*** ADSENSE SCRIPT CODE HERE***>
</td>
</tr>
</table>
</div>
$spacer_close
</if>
</if>
<!-- END Google Ads for NON Members -->

Anyone know how to fix this?
Aceman

DannyITR
06-14-2006, 03:14 PM
Didn't read the whole thread yet but I'm having an issue with the code in the first post. It prevents people from being redirected after making a post in the quick reply box. They get redirected to a white screen. They must thne copy and repaste the thread address in the bar to get back to the forum page. Has this happened to anyone else?

kpr
06-17-2006, 07:21 PM
Its great that these work with everything adbrite etc :)

cheers

SupremeWeapon
06-20-2006, 06:42 AM
<!-- Google Ads for NON members -->
<if condition="!is_member_of($bbuserinfo, 1,3) AND !$GLOBALS['FIRSTPOSTID']">

$spacer_open
<div style="padding:0px 0px $stylevar[cellpadding]px 0px">

<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="thead" align="left">Sponsored Links</td>
</tr>
<tr>
<td class="alt1" align="center">
<script type="text/javascript"><!--
google_ad_client = "pub-9097379824476514";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text_image";
google_ad_channel ="";
//--></script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</td>
</tr>
</table>
</div>
$spacer_close
</if>
</if>
<!-- END Google Ads for NON Members -->

can;t seem to get that to show up.

Edit.

mmmmk I ASSUMED the code for having only certain users see it was ment for users who COULD see it. but its for thoser you DONT want to see it. works perfectly now.

MaK10
06-20-2006, 11:58 AM
so google emailed me claiming im in violation of their policy, but only in one section of the forum, which is a "not work safe" section. So I need to exclude a certain forum id from posting adsense, any ideas? Just a conditional at the top of the code right? any help would be appreciated, thanks

*EDIT*

nevermind, found the answer.

Truckerwife
06-24-2006, 12:23 PM
ok, we have this installed and now post 3 and on are wider than the first 2. anythoughts?

theChronic
06-28-2006, 09:52 PM
I can't get this working, even using an unaltered version of what the hack says. Does anyone have the code for the latest working version of this?

SHalliday
07-02-2006, 10:29 AM
I now have this working on VB3.54 without any problems. Have tested in IE and Firefox with QuickReply Box on. It displays the Google adsense ad after the last post when there are two or more posts in the thread. It does not display when there is only one post in the thread. Here is the code that I used:

<!-- Google Ad -->
<if condition="$post[postcount]!=1 and $post['islastshown']">
$spacer_open
<div style="padding:0px 0px $stylevar[cellpadding]px 0px">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="thead" align="left">Sponsored Links</td>
</tr>
<tr>
<td class="alt1" align="center">
<*** ADSENSE SCRIPT CODE HERE***>
</td>
</tr>
</table>
</div>
$spacer_close
</if>
<!-- Google Ad -->

Thank you very much for the great hack and to all of you who participated in this thread. "Clicked Install"

.

Zowners
07-02-2006, 10:56 AM
How would I get adsense ads to shw up to guests only, after the first post?

theChronic
07-02-2006, 11:33 AM
Im about to fall asleep, but its something like this

<if condition="$post[postcount]!=1 and $post['islastshown'] and $show['guest']">

I will tell you exact code I have that is working and clean when i wake up, sorry but i'm too wiped to login etc right now

peace
john

Zowners
07-02-2006, 01:10 PM
Ok thats cool. I'll look forward to your response :)

theChronic
07-02-2006, 09:14 PM
hey whats up

I got that code for ya. It works flawlessly on my board, only shows to guests and only shows if there are two posts and it shows in a little sponsored box which looks nice.

<if condition="$post[postcount] == 1 AND $show[guest]">

$spacer_open
<div style="padding:0px 0px $stylevar[cellpadding]px 0px">

<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="thead" align="left">Sponsored Links</td>
</tr>
<tr>
<td class="alt1" align="center">
(adsense code or whatever other banners/ads you want go here)
</td>
</tr>
</table>

</div>
$spacer_close

</if>

Put this at the very end of your postbit_legacy template. GL :)

peter_s
07-03-2006, 07:29 PM
I need help.

I am using vb 3.5.4

I added the code including google adsense code to
postbit template but nothing shows up. Do I have to add it to all
Posbit templates such as

Postbit_IP
Poistbit_attachment
etc

or just the main postbit template?

theChronic
07-03-2006, 07:40 PM
If you want what is in that pm, follow my previous post

peace
john

peter_s
07-04-2006, 12:17 AM
If you want what is in that pm, follow my previous post

peace
john

I added the code but still nothing shows! Where exactly do I add the code? Do I have to take any other step after editing the template? Should I be able to see the result instantly?

theChronic
07-04-2006, 12:30 AM
Put this at the very end of your postbit_legacy template. GL

Did you add it to the postbit_legacy template? By going to Admin CP? Make sure to save it etc. Then, make sure that you log out! PM Me your site url.

Remember, the code only shows to guests the way I have it set up.

peter_s
07-04-2006, 12:38 AM
Did you add it to the postbit_legacy template? By going to Admin CP? Make sure to save it etc. Then, make sure that you log out! PM Me your site url.

Remember, the code only shows to guests the way I have it set up.

Ok I add the code to
Postbit
Postbit_legacy

Any where else I should add it?

theChronic
07-04-2006, 12:49 AM
Send me a link to the forum in a PM and I will see what is going on (or try to). You should only need to add it to one template at the very end. I am still learning the ropes and don't know the diff between postbit and postbit_legacy. Mine works in postbit legacy tho.

Did you add the code from the top of this thread or the code I gave you?

Zowners
07-08-2006, 09:56 AM
Excellent, thanks for the code, mate :)

GoTTi
07-22-2006, 09:17 AM
i used this code in a custom style, and after the 3rd post the size of the fields are expanding to 100% instead of staying fixed size.

any ideas?

ski diva
07-24-2006, 04:52 PM
Does this only work in the legacy style?

Snake
07-24-2006, 05:22 PM
Yes it does.

Gary King
07-24-2006, 09:02 PM
How do I get rid of the Sponsored box that appears when someone uses Quick Reply in conjunction with Ajax to reply to a thread? It shows the box but it's empty.

burntire
07-26-2006, 04:52 AM
I now have this working on VB3.54 without any problems. Have tested in IE and Firefox with QuickReply Box on. It displays the Google adsense ad after the last post when there are two or more posts in the thread. It does not display when there is only one post in the thread. Here is the code that I used:

<!-- Google Ad -->
<if condition="$post[postcount]!=1 and $post['islastshown']">
$spacer_open
<div style="padding:0px 0px $stylevar[cellpadding]px 0px">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="thead" align="left">Sponsored Links</td>
</tr>
<tr>
<td class="alt1" align="center">
<*** ADSENSE SCRIPT CODE HERE***>
</td>
</tr>
</table>
</div>
$spacer_close
</if>
<!-- Google Ad -->

Thank you very much for the great hack and to all of you who participated in this thread. "Clicked Install"

.

This works nice.
What is the code to make is display under the first post?
Thanks

Dumi
07-26-2006, 06:46 AM
I now have this working on VB3.54 without any problems. Have tested in IE and Firefox with QuickReply Box on. It displays the Google adsense ad after the last post when there are two or more posts in the thread. It does not display when there is only one post in the thread. Here is the code that I used:

<!-- Google Ad -->
<if condition="$post[postcount]!=1 and $post['islastshown']">
$spacer_open
<div style="padding:0px 0px $stylevar[cellpadding]px 0px">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="thead" align="left">Sponsored Links</td>
</tr>
<tr>
<td class="alt1" align="center">
<*** ADSENSE SCRIPT CODE HERE***>
</td>
</tr>
</table>
</div>
$spacer_close
</if>
<!-- Google Ad -->

Thank you very much for the great hack and to all of you who participated in this thread. "Clicked Install"

.


This has been the only code that has worked on mine w/o messing the tables. Anyway to get it to show after the first post?

Hemanth
07-26-2006, 11:04 AM
Cool. This Condition works perfectly o my vB 3.5.4 board. Thanks a lot.

<if condition="(($post[postcount]==1) or ($post[islastshown] and !$GLOBALS['vbulletin']->GPC['ajax']))">

burntire
07-28-2006, 09:58 PM
Anyone using CMPS with the ad showing after the first post?
If so post up your code. I can't get it to work without messing up the layout on the bottom.
Thanks.

Sim9
07-30-2006, 01:33 AM
I think 3.6.0 uses new table code. This is what I'm using now that works well for me (I also only show ads to guests):

<if condition="!$GLOBALS['FIRSTPOSTID'] && $show['guest']"> <!-- GOOGLE AD -->

<br>
<table id="post$post[postid]" class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="100%" align="center">
<tr>
<td class="thead" style="font-weight:normal; border: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]" colspan="2">
Sponsored Links (Please login to hide these :)
</td>
</tr>
<tr>
<td class="alt2" style="border: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]; border-top: 0px">
<center><script type="text/javascript"><!--
google_ad_client = "INSERT YOUR AD CLIENT HERE";
google_alternate_ad_url = "INSERT YOUR AD URL HERE";
google_ad_width = 728;
google_ad_height = 90;
google_ad_format = "728x90_as";
google_ad_type = "text_image";
google_ad_channel ="";
google_color_border = "333333";
google_color_bg = "444444";
google_color_link = "FFFFFF";
google_color_url = "BBBBBB";
google_color_text = "AAAAAA";
//--></script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></center>
</td>
</tr>
</table>

<!-- / GOOGLE AD --></if>

burntire
07-30-2006, 10:50 PM
Can someone take a look at this code and tell me why the ad shows up under both the first and last post. I just want it under the first post.
Thanks

<!-- Google Ad -->
<if condition="(($post[postcount]==1) or ($post[islastshown] and !$GLOBALS['vbulletin']->GPC['ajax']))">
$spacer_open
<div style="padding:0px 0px $stylevar[cellpadding]px 0px">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="thead" align="left">Sponsored Links</td>
</tr>
<tr>
<td class="alt1" align="center">
<script type="text/javascript"><!--
google_ad_client = "";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "image";
google_ad_channel ="";
google_color_border = "000000";
google_color_bg = "000000";
google_color_link = "FFFFFF";
google_color_text = "CCCCCC";
google_color_url = "999999";
//--></script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</td>
</tr>
</table>
</div>
$spacer_close
</if>
<!-- Google Ad -->


</tr>
</table>

</div>
$spacer_close

</if>

burntire
08-01-2006, 08:24 PM
Anyone?

Can someone take a look at this code and tell me why the ad shows up under both the first and last post. I just want it under the first post.
Thanks

<!-- Google Ad -->
<if condition="(($post[postcount]==1) or ($post[islastshown] and !$GLOBALS['vbulletin']->GPC['ajax']))">
$spacer_open
<div style="padding:0px 0px $stylevar[cellpadding]px 0px">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="thead" align="left">Sponsored Links</td>
</tr>
<tr>
<td class="alt1" align="center">
<script type="text/javascript"><!--
google_ad_client = "";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "image";
google_ad_channel ="";
google_color_border = "000000";
google_color_bg = "000000";
google_color_link = "FFFFFF";
google_color_text = "CCCCCC";
google_color_url = "999999";
//--></script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</td>
</tr>
</table>
</div>
$spacer_close
</if>
<!-- Google Ad -->


</tr>
</table>

</div>
$spacer_close

</if>

l3vi
08-02-2006, 06:06 AM
I was doing some searching to find out why Firefox keep hanging on my phpAdsNew code that I had in the header of each post.

After reading most of this thread till page 10 I got an idea of why Firefox hangs when you use the quick reply.

Basically when the AJAX is run Fixfox attemps to run the javascript and hangs. so I added <if condition="!$post['islastshown']"> around my ad code so that it would not attempt to run the code at the time the quick replay was posted and FireFox started working just fine.

Hope that helps anyone who is looking for the information I was looking for!

GoTTi
08-09-2006, 09:10 AM
I think 3.6.0 uses new table code. This is what I'm using now that works well for me (I also only show ads to guests):

<if condition="!$GLOBALS['FIRSTPOSTID'] && $show['guest']"> <!-- GOOGLE AD -->

<br>
<table id="post$post[postid]" class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="100%" align="center">
<tr>
<td class="thead" style="font-weight:normal; border: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]" colspan="2">
Sponsored Links (Please login to hide these :)
</td>
</tr>
<tr>
<td class="alt2" style="border: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]; border-top: 0px">
<center><script type="text/javascript"><!--
google_ad_client = "INSERT YOUR AD CLIENT HERE";
google_alternate_ad_url = "INSERT YOUR AD URL HERE";
google_ad_width = 728;
google_ad_height = 90;
google_ad_format = "728x90_as";
google_ad_type = "text_image";
google_ad_channel ="";
google_color_border = "333333";
google_color_bg = "444444";
google_color_link = "FFFFFF";
google_color_url = "BBBBBB";
google_color_text = "AAAAAA";
//--></script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></center>
</td>
</tr>
</table>

<!-- / GOOGLE AD --></if>

i tried using this and had no luck.

mattyk72
08-09-2006, 10:24 PM
Has anyone updated this for 3.6 yet??

Smitty
08-13-2006, 05:06 PM
See post above by Gotti - Yes - It works.

azn_romeo_4u
08-13-2006, 10:10 PM
it shows in below the PM page as well? Why is that?

obmob
08-14-2006, 03:38 PM
it shows in below the PM page as well? Why is that?right, right... any idea how to disable it in PM :surprised:

Triggerhappy
08-17-2006, 03:02 AM
Can we clear things up here :)

Which post needs to be used on VB3.6.0
What template to put the code in and what bit of code to place it after in that template.

The code and where it needs to go for the user group selection.

This should help allot of people including me :)

greenflag
08-17-2006, 12:17 PM
What's more fun and challenging - because of ajax issues, is adsense in the last post. ;) That really gets the ad right where the reader's eyes are.

http://www.eaforums.com/forums/364919-post1.html

Find:

<!-- message -->
<div id="post_message_$post[postid]">$post[message]</div>
<!-- / message -->


Add above:

<if condition="(($post[postcount]==1) or ($post[islastshown] and !$GLOBALS['vbulletin']->GPC['ajax']))">


<span id="google" style="float:left;margin:2px;" width="340" height="290" align="center" valign="top">
put banner code here
</span></if>


this wont seem to work with 3.6 gold - any suggestions on how to make it work?

Exposed_Bone
08-18-2006, 01:28 AM
I have 3.6 version and i have used this (https://vborg.vbsupport.ru/showpost.php?p=1040374&postcount=208) code (https://vborg.vbsupport.ru/showpost.php?p=1040374&postcount=208)
but the result is this:
52249

GoTTi
08-21-2006, 05:15 PM
I think 3.6.0 uses new table code. This is what I'm using now that works well for me (I also only show ads to guests):

<if condition="!$GLOBALS['FIRSTPOSTID'] && $show['guest']"> <!-- GOOGLE AD -->

<br>
<table id="post$post[postid]" class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="100%" align="center">
<tr>
<td class="thead" style="font-weight:normal; border: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]" colspan="2">
Sponsored Links (Please login to hide these :)
</td>
</tr>
<tr>
<td class="alt2" style="border: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]; border-top: 0px">
<center><script type="text/javascript"><!--
google_ad_client = "INSERT YOUR AD CLIENT HERE";
google_alternate_ad_url = "INSERT YOUR AD URL HERE";
google_ad_width = 728;
google_ad_height = 90;
google_ad_format = "728x90_as";
google_ad_type = "text_image";
google_ad_channel ="";
google_color_border = "333333";
google_color_bg = "444444";
google_color_link = "FFFFFF";
google_color_url = "BBBBBB";
google_color_text = "AAAAAA";
//--></script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></center>
</td>
</tr>
</table>

<!-- / GOOGLE AD --></if>

this is showing up after each post, not just the first post. fix?

MissKalunji
08-22-2006, 08:39 PM
I think 3.6.0 uses new table code. This is what I'm using now that works well for me (I also only show ads to guests):

<if condition="!$GLOBALS['FIRSTPOSTID'] && $show['guest']"> <!-- GOOGLE AD -->

<br>
<table id="post$post[postid]" class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="100%" align="center">
<tr>
<td class="thead" style="font-weight:normal; border: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]" colspan="2">
Sponsored Links (Please login to hide these :)
</td>
</tr>
<tr>
<td class="alt2" style="border: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]; border-top: 0px">
<center><script type="text/javascript"><!--
google_ad_client = "INSERT YOUR AD CLIENT HERE";
google_alternate_ad_url = "INSERT YOUR AD URL HERE";
google_ad_width = 728;
google_ad_height = 90;
google_ad_format = "728x90_as";
google_ad_type = "text_image";
google_ad_channel ="";
google_color_border = "333333";
google_color_bg = "444444";
google_color_link = "FFFFFF";
google_color_url = "BBBBBB";
google_color_text = "AAAAAA";
//--></script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></center>
</td>
</tr>
</table>

<!-- / GOOGLE AD --></if>


works thanks

rickycc
08-27-2006, 10:23 PM
works thanks
I tried this code but it does not work, can someone help....

burntire
08-29-2006, 05:46 AM
How do you modify the 3.6.0 code to show under the first post, but only if the thread has at least 3 posts?
Thanks

mugz
08-29-2006, 06:53 PM
I just added this code to my site and it set the forum images all over the place i run 3.6.0 the sponser links box did not even match the other posts size?

burntire
08-29-2006, 07:14 PM
I just added this code to my site and it set the forum images all over the place i run 3.6.0 the sponser links box did not even match the other posts size?

did you put it in postbit or postbit legacy

mugz
08-30-2006, 12:33 PM
did you put it in postbit or postbit legacy

I went into postbit and added it at the bottom!

burntire
08-30-2006, 06:29 PM
I went into postbit and added it at the bottom!

I used postbit legacy

Try that

GoTTi
09-02-2006, 04:19 PM
any1 got this working for 3.6.0?

Smitty
09-02-2006, 04:31 PM
Yes, it works on 3.6 but I can't remember what I changed. Someone in this thread posted the 'fix', I think.

GoTTi
09-03-2006, 11:22 AM
yea i used the fix but it is posting itself 3 times in my threads instead of just one time. what code are you using smitty, please post.

Smitty
09-03-2006, 11:59 AM
I *think* this is it - I put it at the end of the postbit template: <!-- Adsense After First Post -->
<if condition="!$GLOBALS['FIRSTPOSTID']">
<!-- GOOGLE AD -->
<br>
<table id="post$post[postid]" class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="100%" align="center">
<tr>
<td class="thead" style="font-weight:normal; border: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]" colspan="2">
Sponsored Links
</td>
</tr>
<tr>
<td class="alt2" style="border: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]; border-top: 0px">
<center>
<script type="text/javascript"><!--
google_ad_client = "pub-xxxxxxxxxxx";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text_image";
google_ad_channel ="xxxxxxx";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "0000CC";
google_color_url = "008000";
google_color_text = "000000";
//--></script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</center>
</td>
</tr>
</table>
<!-- / GOOGLE AD --></if>
<!-- End Adsense After First Post -->

laskos
09-04-2006, 08:37 PM
Hi

i have set this up on my forum http://www.Recycle.co.uk but how do i get it to display ads that are the post topic instead of the page header ?

thanks in advance

LT Mote
09-06-2006, 03:33 AM
I can NOT get this to work on my site rofl.

LT Mote
09-06-2006, 03:38 AM
Hi

i have set this up on my forum http://www.Recycle.co.uk but how do i get it to display ads that are the post topic instead of the page header ?

thanks in advance

You edit the "header" template in the style manager....

dougeetx
09-06-2006, 04:55 AM
Can someone help me out with this? After I installed this hack, my forum won't load when someone else tries to post after the first post. Thanks!

dougeetx
09-06-2006, 07:36 AM
After testing this some more, something weird is happening. It works fine in IE but when I use Firefox, it just continuously tries to load. I can just refresh my page in IE and see that the Firefox post actually worked. I don't know what to try now. Any suggestions?

GoTTi
09-08-2006, 05:54 PM
I *think* this is it - I put it at the end of the postbit template: <!-- Adsense After First Post -->
<if condition="!$GLOBALS['FIRSTPOSTID']">
<!-- GOOGLE AD -->
<br>
<table id="post$post[postid]" class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="100%" align="center">
<tr>
<td class="thead" style="font-weight:normal; border: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]" colspan="2">
Sponsored Links
</td>
</tr>
<tr>
<td class="alt2" style="border: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]; border-top: 0px">
<center>
<script type="text/javascript"><!--
google_ad_client = "pub-xxxxxxxxxxx";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text_image";
google_ad_channel ="xxxxxxx";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "0000CC";
google_color_url = "008000";
google_color_text = "000000";
//--></script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</center>
</td>
</tr>
</table>
<!-- / GOOGLE AD --></if>
<!-- End Adsense After First Post -->


this works. thanks. :rolleyes:

Silmarillion
09-09-2006, 03:32 PM
is there a way to get this to post after the first post on each page, page2,3.4. etc ?Any ideas?

Edit: just found the answer (http://www.vbulletin.com/forum/showthread.php?t=157022).

<if condition="$post[postcount] % $vboptions[maxposts] == 1">

mfg

laskos
09-10-2006, 09:19 AM
You edit the "header" template in the style manager....

Sorry i dont get what you mean. what i want is when someone posts say they are giving away sofa bed, i would like the adsence after the first post display ads about sofa beds, same if someone posts an ad about a drinks cabinet, again i would like after the first post it display ads about drinks cabinets ?

Is this possible and how can i achieve this

thanks in advance.

Dumi
09-18-2006, 08:09 PM
hey whats up

I got that code for ya. It works flawlessly on my board, only shows to guests and only shows if there are two posts and it shows in a little sponsored box which looks nice.

<if condition="$post[postcount] == 1 AND $show[guest]">

$spacer_open
<div style="padding:0px 0px $stylevar[cellpadding]px 0px">

<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="thead" align="left">Sponsored Links</td>
</tr>
<tr>
<td class="alt1" align="center">
(adsense code or whatever other banners/ads you want go here)
</td>
</tr>
</table>

</div>
$spacer_close

</if>

Put this at the very end of your postbit_legacy template. GL :)


This is the best one I have found so far, very simple. Worked in postbit, version 5.4

farooqaaa
09-25-2006, 10:58 AM
I tried this but its not working for me :(

DementedMindz
09-25-2006, 11:35 AM
try this im using the last one tweaked a bit.
http://www.vbulletin.com/forum/showthread.php?t=157022

karrerax
09-27-2006, 05:40 AM
I *think* this is it - I put it at the end of the postbit template: <!-- Adsense After First Post -->
<if condition="!$GLOBALS['FIRSTPOSTID']">
<!-- GOOGLE AD -->
<br>
<table id="post$post[postid]" class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="100%" align="center">
<tr>
<td class="thead" style="font-weight:normal; border: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]" colspan="2">
Sponsored Links
</td>
</tr>
<tr>
<td class="alt2" style="border: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]; border-top: 0px">
<center>
<script type="text/javascript"><!--
google_ad_client = "pub-xxxxxxxxxxx";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text_image";
google_ad_channel ="xxxxxxx";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "0000CC";
google_color_url = "008000";
google_color_text = "000000";
//--></script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</center>
</td>
</tr>
</table>
<!-- / GOOGLE AD --></if>
<!-- End Adsense After First Post -->


This Works in 3.6!
Thanks

oldfan
09-29-2006, 03:28 AM
Well I finally have found the fix. This is tested and working in firefox, and does not create any more of those anoying empty tables when you edit.

REPLACE
<if condition="!$GLOBALS['FIRSTPOSTID']">
WITH
<if condition="$post[postcount] % $vboptions[maxposts] == 1">

If you need to exclude a user group form seeing them,
<if condition="$post[postcount] % $vboptions[maxposts] == 1 AND $vbulletin->userinfo[usergroupid] != 'x' ">

thank you

Cajun
10-01-2006, 03:42 PM
I can not get this to work with vb 3.6.1 on postbit_legacy. This is the code I am using:

<if condition="!$GLOBALS['FIRSTPOSTID'] && $show['guest']"> <!-- GOOGLE AD -->

<br>
<table id="post$post[postid]" class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="100%" align="center">
<tr>
<td class="thead" style="font-weight:normal; border: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]" colspan="2">
Sponsored Links (Please login to hide these :)
</td>
</tr>
<tr>
<td class="alt2" style="border: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]; border-top: 0px">
<center><script type="text/javascript"><!--
google_ad_client = "INSERT YOUR AD CLIENT HERE";
google_alternate_ad_url = "INSERT YOUR AD URL HERE";
google_ad_width = 728;
google_ad_height = 90;
google_ad_format = "728x90_as";
google_ad_type = "text_image";
google_ad_channel ="";
google_color_border = "333333";
google_color_bg = "444444";
google_color_link = "FFFFFF";
google_color_url = "BBBBBB";
google_color_text = "AAAAAA";
//--></script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></center>
</td>
</tr>
</table>

<!-- / GOOGLE AD --></if>


Can someone tell me what I can be doing wrong?

GrendelKhan{TSU
10-01-2006, 05:23 PM
This Works in 3.6!
Thanks

yup that's the one I got to work too. :)

smsmasters
10-01-2006, 06:26 PM
Thanks, works great here!

oldfan
10-02-2006, 01:30 AM
seems that all usergroups can still see that ads

soletrader
10-08-2006, 09:22 AM
Hi, I would like to receive some help.

I use a fluid template with a 90% width. When I place this code in the postbit the adsense will distort the template and will stick out to 100%

Is there a way I can change this? Thank you

Greek76
11-26-2006, 01:25 PM
This does not work for me period. any ideas? I did the code exactly as it was shown and added my google code inbetween no luck though. IM using 3.6.2