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 offline
Our team is away during the weekend. Some answers may already be available on our documentation

Rest assured that we will get back to your posts as soon as the week starts!
  Support is offline

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