- Posts: 143
- Thank you received: 0
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
17 years 1 month ago #9322
by orthanc
Replied by orthanc on topic Re:Pagination in Recent Discussions
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.
17 years 1 month ago #9326
by test12
Replied by test12 on topic Re:Pagination in Recent Discussions
Hey, it works !!!
Danke, thank you orthanc !
But one more question...where in the php I have to remove the [Page: ] ?
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.
17 years 1 month ago #9333
by orthanc
Replied by orthanc on topic Re:Pagination in Recent Discussions
to remove the []
... in flat.php
delete the "["
delete the "]"
the string "Page:" can be found in your language file, for english:
empty the string:
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:
delete the "_Page"
... in flat.php
Code:
echo ("<span class=\"jr-showcat-perpage\">[");
Code:
echo ("]</span>");
the string "Page:" can be found in your language file, for english:
Code:
DEFINE('_PAGE', 'Page: ');
Code:
DEFINE('_PAGE', '');
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);
Please Log in or Create an account to join the conversation.
17 years 1 month ago #9335
by test12
Replied by test12 on topic Re:Pagination in Recent Discussions
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
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