News:

Want to get involved in developing SMF, then why not lend a hand on our github!

Main Menu

Change Post Counts

Started by KCToker, October 20, 2007, 12:15:49 AM

Previous topic - Next topic

KCToker

Hi!

I admin a board of... well... "wacky" people, and they wanted to know if there's a way to make it so that the post counts will have a negative sign (-) in front of them.

Is this possible?

Bulakbol

What for?  :D  Well, you can add negative sign before displaying the number of posts.  Display.template.php,


// Show how many posts they have made.
echo '
', $txt[26], ': ', $message['member']['posts'], '<br />';


add minus sign before the the number of posts.


// Show how many posts they have made.
echo '
', $txt[26], ': -', $message['member']['posts'], '<br />';


You still have to add minus sign in the profile and stat template though and probably more.
Please do not PM me for support · My Mods and Theme · SMF Coding Guidelines · Modifications Approval Guidelines

KCToker

Thanks! That worked perfectly!

Advertisement: