MOD Name: Ads after first and last post (proSilver based)
MOD Version: 1.0.0
Author: topdown inspired by >> Shadow_One
MOD Description: This mod puts ads after the first post, first and last post, or
first and last post with different ads in each.
Works with:
- phpBB3.0.0
Language: English
Licence: GNU General Public License v2
Demo: DEMO
Screenshot:
Not yet.
Installation Level: Easy
Installation Time: 3-5 Minutes
Format:
Download File:
Open >>> template/viewtopic_body.html
Find
- Code: Select all
<!-- END postrow -->
Before Add
- Code: Select all
<!-- IF postrow.S_FIRST_ROW -->
<div class="post bg2">
<div class="inner">
<span class="corners-top">
<span></span></span>
<div class="content">
<dl class="faq">
<dd style="text-align:center;">
<!-- INCLUDE ads.txt -->
</dd></dl>
</div>
<span class="corners-bottom">
<span></span></span>
</div>
</div>
<!-- ENDIF -->
If you want ads after the first and last post.
CHANGE
- Code: Select all
<!-- IF postrow.S_FIRST_ROW -->
to
- Code: Select all
<!-- IF postrow.S_FIRST_ROW or postrow.S_LAST_ROW -->
Make a ads.txt for your template folder and place your ads in it.
Refresh the templates after making the changes.

Here is ads after first and last post with the first and last ads being different.
Same sequence
Open >>> template/viewtopic_body.html
Find
- Code: Select all
<!-- END postrow -->
Before Add
- Code: Select all
<!-- IF postrow.S_FIRST_ROW -->
<div class="post bg2">
<div class="inner">
<span class="corners-top">
<span></span></span>
<div class="content">
<dl class="faq">
<dd style="text-align:center;">
<!-- INCLUDE ads.txt -->
</dd></dl>
</div>
<span class="corners-bottom">
<span></span></span>
</div>
</div>
<!-- ELSEIF postrow.S_LAST_ROW -->
<div class="post bg2">
<div class="inner">
<span class="corners-top">
<span></span></span>
<div class="content">
<dl class="faq">
<dd style="text-align:center;">
<!-- INCLUDE ads2.txt -->
</dd></dl>
</div>
<span class="corners-bottom">
<span></span></span>
</div>
</div>
<!-- ENDIF -->
Make a ads.txt and a ads2.txt for your template folder and place your ads in it.
Refresh the templates after making the changes.

Expanded for subsilver2 based here
viewtopic.php?p=59938#p59938











