- 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 Column shift in threaded view
- webrus
-
Topic Author
- New Member
-
Please Log in or Create an account to join the conversation.
- webrus
-
Topic Author
- New Member
-
- Thank you received: 0
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
- webrus
-
Topic Author
- New Member
-
- Thank you received: 0
I don't have access to look right now but if memory serves me correctly, you can specify whether you want flat or threaded as the default in the admin cpanel for Kunena.
That's correct. But unfortunately this won't prevent users to change the views themselves.
Please Log in or Create an account to join the conversation.
In the mean time you can do this (you have default_ex as your theme?):
components/com_kunena/template/default/plugin/myprofile/myprofile_set.php:
Comment out line 38:
Comment out lines 41-48:
components/com_kunena/template/default_ex/fb_layout.php:
Comment out lines 206-216:
Comment out lines 221-232:
and then run SQL query (replace jos_ if you have different prefix in Joomla):
Huh! That should do it.
Please Log in or Create an account to join the conversation.
- webrus
-
Topic Author
- New Member
-
- Thank you received: 0
Threaded view has been disabled in our latest builds, because it was broken and always has been.
In the mean time you can do this (you have default_ex as your theme?):
Yes, I do.
components/com_kunena/template/default/plugin/myprofile/myprofile_set.php:
Comment out lines 36-51:
Code:/* <tr> .... </tr> */
This one does not seem to work. Seems like I am not successfull in commenting out. I proceeded like you suggested. But this only produce a line showing /* */ before the view selection section.
components/com_kunena/template/default_ex/fb_layout.php:
Comment out lines 206-216:
Code:/* if ($view == "flat") { .... } */
Comment out lines 221-232:
Code:/* if ($view == "flat") { .... } */
and then run SQL query (replace jos_ if you have different prefix in Joomla):
Code:UPDATE `jos_fb_users` SET `view` = 'flat';
Those edits and the query seemed to have worked fine.
Please Log in or Create an account to join the conversation.