Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Advert addon
hey can someone make a quick addon, i mean really quick that will post an advert after the first post in a thread?
Would be most grateful
Thanks, Immersion
Would be most grateful
Thanks, Immersion
0
This discussion has been closed.
Comments
<?php function GetRowNumber(&$CommentGrid) { $RowNumber = $CommentGrid->DelegateParameters['RowNumber']; } ?>
work to find out if it is the first post. Then you could do
$x = 1; if ($RowNumber = $x) { echo 'hello'; }
Well that being the principle of it not the actual code :P
It does requiring editing 1 file, but you wont be taking anything out, you're just adding onto it.
If you look in the themes folder / directory you'll see the file comments.php open that up to edit it. go to like 130 or 129 something like that and you'll see this.. add the following right before that so it would then look like..
if you look at that you'll see the "if($RowNumber == 1){" you can change that 1 to whatever number you would like, and thats the posts number it will show up after.