Quote:
Originally posted by Mr_P
[[($post[howmanypost]>10])]]
Major Thread Contributor
[[/($post[howmanypost]>10])]]
Would this be correct ?
|
Provided that you apply the hacks (both this one and advanced templates) first and insert this to postbit template, yep that's correct!
If you want to apply the modification in the hack code (so as not to need advanced templates hack), find:
PHP Code:
$post[howmanypost]=(int)$howmany_userposts[$mypost_userid];
After it Add this:
PHP Code:
if ($post[howmanypost]>10) {$post[howmanypost]="Major Thread Contributor";
else {$post[howmanypost]='';}
it will give the same result with the conditional you referred..