- Posts: 172
- Thank you received: 0
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 ...
Please Log in or Create an account to join the conversation.

I have a very big and busy forum so a lot of topics are viewed more than thousands and thousands of times.
When you look at a category index of the forum you can see that in the column 10.000 views for instance.
I do find the way the views are presented a bit strange. If you look at the file attached in the column 'bekeken' (=views in Dutch). Look at the first topic, it is viewed 61.37duizend (duizend=the word thousand in dutch).
I find that a bit strange. I'd rather have it displayed just in numbers like 61.372 (and not with the word 'duizend').
I have looked in the admin but can't find anything... Is this changeble? And if yes, how can I change it so the views will be like 61.178 / 10.890 again?
Hope someone can help

Kind regards, GertJan
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
do you have a link to your site.
thnx
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
regards 810
Please Log in or Create an account to join the conversation.
810 wrote: i think its a gavick template problem, first can you try to use the kunena default template. if its works, then your own template isn't working perfect, But i also see that he always load the ie7 template. there is the proplem.
regards 810
I have already tried that, use the standard Kunena template. Also tried to standard Joomla template.
But still the same problem with view counter....
Please Log in or Create an account to join the conversation.
regards 810
Please Log in or Create an account to join the conversation.

Please Log in or Create an account to join the conversation.
ComposerRyan wrote: Thanks again Sozzled! Here is what I changed:
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;
}
Awesome! This really works!! Very happy with it

Thank you very much!
Please Log in or Create an account to join the conversation.