This Hack: Mini - Post Counter in Split Thread
PHP Code:
In the ###start split thread### section of postings.php find:
$counter=0;
while ($post=$DB_site->fetch_array($posts)) {
if (++$counter%2==0) {
$post[backcolor]="{firstaltcolor}";
$post[bgclass] = "alt1";
} else {
$post[backcolor]="{secondaltcolor}";
$post[bgclass] = "alt2";
}
Replace it with:
$counter=0;
$countposts = 0;
while ($post=$DB_site->fetch_array($posts)) {
if (++$counter%2==0) {
$post[backcolor]="{firstaltcolor}";
$post[bgclass] = "alt1";
$countposts = $countposts+1;
} else {
$post[backcolor]="{secondaltcolor}";
$post[bgclass] = "alt2";
$countposts = $countposts+1;
}
Then open your threads_splitthreadbit template and add $countposts wherever you want.
I added:
<br><b>Post # $countposts</b>
Right after:
<input type="radio" name="splitpost[$post[postid]]" value="no" checked> No
If you want a direct link to the post to open up the thread in it's own window you can use the following in the same place in the template:
<br><b>Post # <a href="showthread.php?postid=$post[postid]#post$post[postid]" target="_blank">$countposts</a></b>