UPDATES EasyBlog 6.0.14 Released! Joomla 5.x and PHP 8.x compatible now!

Helpdesk

Your Time
Our Time
Response Time
24 — 48 hours
We strive to provide the fastest ever response possible. However, we are not super beings.

Allow at least 24 — 48 hours
  Support is online
Our support specialists is available now. We will attend to you as soon as we can.
  Support is online

MOD_EASYBLOGLATESTBLOGGER_COUNT string missing

Print and Web Designer · ·
4:24 AM Sunday, 11 May 2014
None
The languages files specifies MOD_EASYBLOGLATESTBLOGGER_COUNT_PLURAL and MOD_EASYBLOGLATESTBLOGGER_COUNT_SINGULAR. The solution could be to add the string or modify modules/mod_easybloglatestblogger/tmpl/default.php as follows:
42,51c42
< <div class="mod-author-post small">
< <?php
< /* chrissy:Fix plural/singular internationalisation issue */
< if ($blogger->post_count != 1) {
< echo JText::sprintf('MOD_EASYBLOGLATESTBLOGGER_COUNT_PLURAL', $blogger->post_count);
< } else {
< echo JText::sprintf('MOD_EASYBLOGLATESTBLOGGER_COUNT_SINGULAR', $blogger->post_count);
< }
< ?>
< </div>
---
> <div class="mod-author-post small"><?php echo JText::sprintf('MOD_EASYBLOGLATESTBLOGGER_COUNT', $blogger->post_count); ?></div>
53c44
< </div>
---
> </div>
The replies under this section are restricted to logged in users or users with an active subscription with us