PDA

View Full Version : Custom badge in posbit_legacy for users with > X posts per day?


TrickyD
03-17-2006, 12:42 PM
If someone has a few extra minutes and could help me do this I'd greatly appreciate it.

I already have a code in my postbit_legacy that gives a user a badge if their join date was prior to a point X as

<if condition="$post['jd_dateline'] + 31536000 <= TIMENOW">
<img border="0" src="http://www.utopiafootball.com/images/pridestickers/veteran_3.gif" alt="Veteran" vspace="1">&nbsp;
</if>

But I have not been able to figure out a similiar conditional statement for displaying a badge for users with over a specific number of posts per day.

I'm basically looking for

<if posts_per_day > 20>
Display image
</if>

Can anyone offer that code for me?

amykhar
03-17-2006, 12:47 PM
You can do math in templates. So, all you need is $post[posts] divided by the number of days the member has been a member.

So, (TIMENOW - $post['jd_dateline']) / (24*60*60) gives you the number of days.

Which means you want $post[posts]/((TIMENOW - $post['jd_dateline']) / (24*60*60)) or

$post[posts]/((TIMENOW - $post['jd_dateline']) / 86400)

TrickyD
03-17-2006, 01:22 PM
Thank you for your reply and help, amykhar.

I attempted to implement that code, but my results were not appropriate.

I entered the code as follows

<if condition="1 < $post[posts]/((TIMENOW - $post['jd_dateline']) / 86400)">
<img border="0" src="http://www.utopiafootball.com/images/pridestickers/post+++++_2.gif" alt="Post +++++" vspace="1">&nbsp;
</if>

Did I make any mistakes there?

The icon displays for every member of the forum if I flip the < to > which seems to indicate to me I'm not getting a proper value.

Any ideas?

amykhar
03-17-2006, 01:56 PM
Let me try on my site and see what I come up with. I'll be back in a bit.

amykhar
03-17-2006, 02:15 PM
ok. Here you go. It was TIMENOW that was hosing it. I put together this plugin for you to start with.

It's a plugin, not a product so import it as such.

Then, change the activeposter variable to have the image you want. and use $activeposter in the postbit where you want it.

TrickyD
03-17-2006, 02:34 PM
Works perfectly now.

Thank you very much for your help Amy! I definitely appreciate it.

amykhar
03-17-2006, 03:01 PM
My pleasure.

Trana
03-17-2006, 03:17 PM
Is there a hack that does this for different groups, usertitles, postcounts?