Kunena 7.0.2 Released
The Kunena team has announce the arrival of Kunena 7.0.2 [K 7.0.2] in stable which is now available for download as a native Joomla extension for J! 5.3.x/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
This category contains miscellaneous, uncategorised user contributions, (templates, modules, plugins and hacks) relating to older versions of Kunena that are no longer supported.
This category may also contain a few topics relating to K 1.6 that may have been moved here possibly by mistake.
The topics in this category are for historical interest only. Owing to the structural differences between K 1.6 and K 1.7, these ideas in these topics will not work with later versions and, for that reason, the topics are locked.
This category may also contain a few topics relating to K 1.6 that may have been moved here possibly by mistake.
The topics in this category are for historical interest only. Owing to the structural differences between K 1.6 and K 1.7, these ideas in these topics will not work with later versions and, for that reason, the topics are locked.
Question Posts ordering set in kunena admin panel
16 years 8 months ago #24260
by xillibit
I don't provide support by PM, because this can be useful for someone else.
Replied by xillibit on topic Re:Posts ordering set in kunena admin panel
Thanks lavsteph for this modification, i have it in the archive below. Don't forget to add this, in your administrator/components/com_kunena/language/kunena.yourlanguage.php :
Code:
DEFINE('_COM_A_POSTORDER', 'Define the posts order');
DEFINE('_COM_A_POSTORDER_DESC', 'Define the posts order in two modes : ascending or descending.');
DEFINE('_USER_ORDER_DESC', 'Descending');
DEFINE('_USER_ORDER_ASC', 'Ascending');
Attachment hack_posts_ordering_K1-20090719.zip not found
I don't provide support by PM, because this can be useful for someone else.
Please Log in or Create an account to join the conversation.
16 years 8 months ago #24266
by lavsteph
Manager French translation
Replied by lavsteph on topic Re:Posts ordering set in kunena admin panel
Hi,
the translation already exists in the kunena.english.php
line 1331-1532
the translation already exists in the kunena.english.php
line 1331-1532
Code:
//New 0.9 to 1.0
DEFINE('_USER_ORDER', 'Preferred Message Ordering');
DEFINE('_USER_ORDER_DESC', 'Last post first');
DEFINE('_USER_ORDER_ASC', 'First post first');
Manager French translation
Please Log in or Create an account to join the conversation.
16 years 7 months ago #26208
by sneadm
Replied by sneadm on topic Re:Posts ordering set in kunena admin panel
I'm using 1.5.4 w/CB 1.2.1. I've set Kunena to use the CB Profile. CB defines a field 'forumorder' which the user may set. You may also set the default to '0'(asc) or '1' (desc). This then populates the 'odering' field in fb_users which is used by the kuena_config_class::DoUserOverrides to override the default setting in the class.
I don't know if the native Kunena profile edit allows the user to change this but the CB profile does.
So, different users can have different sorts without the need for the hack.
Hope that helps clarify.
I don't know if the native Kunena profile edit allows the user to change this but the CB profile does.
So, different users can have different sorts without the need for the hack.
Hope that helps clarify.
Please Log in or Create an account to join the conversation.
16 years 3 months ago #34340
by Roo
Replied by Roo on topic Re:Posts ordering set in kunena admin panel
Hi there. I'm pretty desperate to get my threads ordered with the oldest at the top but I'm very much an out-of-the-box man. I am rather terrified about hacking.
However, I am determined so....
I have downloaded hack_posts_ordering_K1-20090719.zip but I have no idea what to do with it.
Could some kind person please offer an idiot-proof step-by-step instruction on what I need to do. I would be most grateful.
I am using Kunena 1.5.7 (and, for what it's worth, Community Builder and CB SuperActivity)
However, I am determined so....
I have downloaded hack_posts_ordering_K1-20090719.zip but I have no idea what to do with it.
Could some kind person please offer an idiot-proof step-by-step instruction on what I need to do. I would be most grateful.
I am using Kunena 1.5.7 (and, for what it's worth, Community Builder and CB SuperActivity)
Please Log in or Create an account to join the conversation.
16 years 3 months ago #34344
by xillibit
I don't provide support by PM, because this can be useful for someone else.
Replied by xillibit on topic Re:Posts ordering set in kunena admin panel
You have two choices, use this hack for set the post ordering for all users or in my profile->look and layout and set the post ordering.
You don't need hack, the changes are already applied in the files in the archive, just put these files in your FTP and replace the older files.
Don't forget to add this in your administrator/components/com_kunena/language/kunena.yourlanguage.php :
For Kunena 1.5.7, you need to use this :
You don't need hack, the changes are already applied in the files in the archive, just put these files in your FTP and replace the older files.
Don't forget to add this in your administrator/components/com_kunena/language/kunena.yourlanguage.php :
Code:
DEFINE('_COM_A_POSTORDER', 'Define the posts order');
DEFINE('_COM_A_POSTORDER_DESC', 'Define the posts order in two modes : ascending or descending.')
For Kunena 1.5.7, you need to use this :
I don't provide support by PM, because this can be useful for someone else.
Please Log in or Create an account to join the conversation.
16 years 3 months ago #34357
by Roo
Replied by Roo on topic Re:Posts ordering set in kunena admin panel
I REALLY appreciate your help. Many thanks. I Have followed your instructions (I think!) but when I try to get into the Kunena admin back end I get:
"Parse error: syntax error, unexpected T_STRING in /home2/onesevsi/public_html/upthewestend/administrator/components/com_kunena/language/kunena.english.php on line 35"
Which is strange because line 35 appears to be "define('_KUNENA_JS_ACTIVITYSTREAM_CREATE_MSG1', 'created a new topic');" which I haven't changed.
Any ideas?
Below is a snippet showing everything from the code I added to the offending line 35. I really appreciate your help.
//Hack to reverse order of posts by default see www.kunena.com/forum/114-hacks/20886-pos...it=10&start=10#34344
DEFINE('_COM_A_POSTORDER', 'Define the posts order');
DEFINE('_COM_A_POSTORDER_DESC', 'Define the posts order in two modes : ascending or descending.')
// 1.5.7
define('_KUNENA_JS_ACTIVITYSTREAM_CREATE_MSG1', 'created a new topic');
"Parse error: syntax error, unexpected T_STRING in /home2/onesevsi/public_html/upthewestend/administrator/components/com_kunena/language/kunena.english.php on line 35"
Which is strange because line 35 appears to be "define('_KUNENA_JS_ACTIVITYSTREAM_CREATE_MSG1', 'created a new topic');" which I haven't changed.
Any ideas?
Below is a snippet showing everything from the code I added to the offending line 35. I really appreciate your help.
//Hack to reverse order of posts by default see www.kunena.com/forum/114-hacks/20886-pos...it=10&start=10#34344
DEFINE('_COM_A_POSTORDER', 'Define the posts order');
DEFINE('_COM_A_POSTORDER_DESC', 'Define the posts order in two modes : ascending or descending.')
// 1.5.7
define('_KUNENA_JS_ACTIVITYSTREAM_CREATE_MSG1', 'created a new topic');
Please Log in or Create an account to join the conversation.
Time to create page: 0.300 seconds