- Posts: 45
- Thank you received: 1
Kunena 6.3.8 Released
The Kunena team has announce the arrival of Kunena 6.3.8 [K 6.3.8] in stable which is now available for download as a native Joomla extension for J! 4.4.x/5.0.x/5.1.x/5.2.x. This version addresses most of the issues that were discovered in K 6.2 / K 6.3 and issues discovered during the last development stages of K 6.3
Note: Please go to the Kunena Dashboard after an upgrade so that the Kunena database tables are also updated.
Question [Merged topic] When the number of views or replies is greater than 9999 ...
On the home page of my forum (Kunena 1.6 stable), when it comes to the 9999 responses shows 10.00k replies.
It is more logical to display 10000 replies?
Any idea?
Miguel
Madrid (Spain)
Please Log in or Create an account to join the conversation.
10,000 or 50,000 or 100,000 or 500,000 or 1,000,000 wont fit into the same space as 4 digits would.
Therefore Kunena 1.6 has a formatting engine that always reduces to 4 significant digits.
The output becomes 10.00k, 50.00k, 100.0k, 500.0k, 1.000m, 10.00m, 100.0m (k and m being part of the translation file for thousand and million).
This makes sure the template does not break, just because these numbers get too big.
Hope this helps!
We love stars on the Joomla Extension Directory .

Please Log in or Create an account to join the conversation.
Greetings.
Miguel
Madrid (Spain)
Please Log in or Create an account to join the conversation.
- ComposerRyan
-
- Offline
- Junior Member
- Posts: 40
- Thank you received: 3
I want it to display as "10,480 replies" Is there a way to fix this? Thanks!
Ryan
Please Log in or Create an account to join the conversation.

Blue Eagle vs. Crypsis reference guide
Read my blog and

Please Log in or Create an account to join the conversation.
- ComposerRyan
-
- Offline
- Junior Member
- Posts: 40
- Thank you received: 3
Please Log in or Create an account to join the conversation.

Blue Eagle vs. Crypsis reference guide
Read my blog and

Please Log in or Create an account to join the conversation.
- ComposerRyan
-
- Offline
- Junior Member
- Posts: 40
- Thank you received: 3

Please Log in or Create an account to join the conversation.
Each time you upgrade Kunena you will have to remember to change this file.
Blue Eagle vs. Crypsis reference guide
Read my blog and

Please Log in or Create an account to join the conversation.
- ComposerRyan
-
- Offline
- Junior Member
- Posts: 40
- Thank you received: 3
open components/com_kunena/class.kunena.php
1) Next find this code:
} elseif ($number >= 1000000) {
$output = $number / 1000000 . JText::_('COM_KUNENA_MILLION');
} else {
$output = $number / 1000 . JText::_('COM_KUNENA_THOUSAND');
}
2) Next, replace it with this:
} elseif ($number >= 1000000) {
$output = $number;
} else {
$output = $number;
}
Please Log in or Create an account to join the conversation.