The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
Is there a way to put banner ad between sticky threads and normal threads?
I know there is a way to put banner ads or text ads after the first post of every thread (by putting the ad codes in the postbit template).
Is there a way to put banner ad between sticky threads and normal threads? Like separating the sticky threads and normal threads with a banner/text ad? For example, http://prntscr.com/8j1zzh Is this possible to do? If yes, please instruct how to do it. Also, if it is possible to do this for certain forum categories, that'd be great. |
#2
|
||||
|
||||
Go to your forumdisplay template and enter your ad code in between the following two pieces of code:
Code:
<vb:if condition="$show['stickies']"> <ol id="stickies" class="stickies"> {vb:raw threadbits_sticky} </ol> </vb:if> Code:
<vb:if condition="$show['threads']"> <ol id="threads" class="threads"> {vb:raw threadbits} </ol> </vb:if> Code:
<div class="threadbit"> <p class="nonthread"> <-- AD CODE HERE --> </p> </div> |
2 благодарности(ей) от: | ||
Brandon Sheley, tanzeelniazi |
#3
|
|||
|
|||
So you mean this is how the forumdisplay template should look like, right?
Code:
<vb:if condition="$show['stickies']"> <ol id="stickies" class="stickies"> {vb:raw threadbits_sticky} </ol> </vb:if> <div class="threadbit"> <p class="nonthread"> <-- AD CODE HERE --> </p> </div> <vb:if condition="$show['threads']"> <ol id="threads" class="threads"> {vb:raw threadbits} </ol> </vb:if> |
#4
|
||||
|
||||
You got it :up:
|
#5
|
|||
|
|||
Question,
Is it possible to post ad code on every section? Forum consists of Introduction News Chit Chat SPAM etc. Is it possible to either make adcode appear on every click, anywhere, on forum? |
#6
|
|||
|
|||
Hey check this out. Some went a little wrong. A little area of the normal thread gets broken and gets above the banner with the sticky threads. This screenshot will explain:
What to do? |
#7
|
||||
|
||||
Change class="threadbit" to threadadd or something else. I think it's messing up because it is a vb class already. You can then style it using the class.
Code:
.threadadd { border: 1px solid #000; border-radius: 3px; } It also might be because of using a div in the middle of it. I would have to look at how that section was coded. Been awhile since I've been in that template. Bottom line is it can be sorted and working the way you want it to.. |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|