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

Topics that are moved into this category are generally considered to be closed. Users may want to add additional information but these topics should not be resurrected in order to discuss new problems or unrelated matters.

Question How to change the title in Kunena forum

More
16 years 9 months ago - 16 years 9 months ago #22683 by sozzled
I must confess to you that I was using K 1.0.10 as my basis for suggesting which areas of code needed to be changed. I wasn't sure whether K 1.5.3 is significantly different in this regard. It appears my assumptions were probably incorrect.

I'll have a look at K 1.5.3 to see what changes are indicated. I would suspect that, even if the line numbers are different, the structure of the PHP code that needs to be changed should be roughly similar. I won't be able to test the results until I have upgraded to K 1.5.3 myself.

The relevant area has to do with a call (or calls) to to the setTitle class/function.
Last edit: 16 years 9 months ago by sozzled.

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

More
15 years 11 months ago - 15 years 11 months ago #49302 by drnda
I've found the solution in a harder way :
fb_layout.php
fb_pathway.php
latestx.php
listcat.php

I've edited every single file of the above, and looking for the line where "board_title" is mentioned, then moved it to left, and what was left, I've moved it to right - simple change the order in code, but you have to be very careful, always download it first, save, then edit so,in case of some mistake - you will be able to restore it later.
So the key is to find "board_title" and move it.
example :
before

$document->setTitle(_KUNENA_ALL_DISCUSSIONS . ' - ' . stripslashes($fbConfig->board_title));

after editing

$document->setTitle($fbConfig->board_title . ' - ' . stripslashes(_KUNENA_ALL_DISCUSSIONS));


You must not move the phrase "stripslashes", only move what's in brackets.
I am sorry for my english, but I hope you've understood.

p.s. I am a simple user, If I did it, anyone can :)
Last edit: 15 years 11 months ago by drnda.

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

Time to create page: 0.243 seconds