Kunena 7.0.4 Released

The Kunena team has announce the arrival of Kunena 7.0.4 [K 7.0.4] 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 Pagination in Recent Discussions

More
17 years 1 month ago #9322 by orthanc
you can add something like this to the kunena.forum.css of your kunena template:
Code:
span .jr-showcat-perpage a, .jr-showcat-perpage a:link, .jr-showcat-perpage a:hover, .jr-showcat-perpage a:visited { font-size: 10px; border: 1px solid #999999; margin: 0px 2px; padding: 0px 2px; }

Please Log in or Create an account to join the conversation.

More
17 years 1 month ago #9326 by test12
Hey, it works !!!

Danke, thank you orthanc ! ;)
But one more question...where in the php I have to remove the [Page: ] ?

Please Log in or Create an account to join the conversation.

More
17 years 1 month ago #9333 by orthanc
to remove the []
... in flat.php
Code:
echo ("<span class=\"jr-showcat-perpage\">[");
delete the "["
Code:
echo ("]</span>");
delete the "]"

the string "Page:" can be found in your language file, for english:
Code:
DEFINE('_PAGE', 'Page:&#32;');
empty the string:
Code:
DEFINE('_PAGE', '');
but if you empty this, it affects also the "Page:" on pagination at bottom and top of the forum.

To remove the "Page:" for "thread- / category-preview" in flat-view only:
Code:
echo _PAGE.' '.CKunenaLink::GetThreadPageLink($fbConfig, 'view', $leaf->catid, $leaf->id, 1, $fbConfig->messages_per_page, 1);
delete the "_Page"

Please Log in or Create an account to join the conversation.

More
17 years 1 month ago #9335 by test12
Thx again orthanc :)

I delete "[" and "]" in flat.php but on "Recent Discussions" it still appears...(yes, I clear cache and try with other browsers)

But it's no big prob...looks nice ;)

Thx

Please Log in or Create an account to join the conversation.

Time to create page: 0.267 seconds