Kunena 7.0.3 Released
The Kunena team has announce the arrival of Kunena 7.0.3 [K 7.0.3] in stable which is now available for download as a native Joomla extension for J! 5.4.x/6.0.x. This version addresses most of the issues that were discovered in K 6.2 / K 6.3 / K 6.4 and issues discovered during the last development stages of K 7.0
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.
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.
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.
gjhvs wrote:
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;
}
Yes this code does the trick, ty for posting it ^^
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.