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

If you are having problems then, for your own benefit, it would save us all a lot of time if you would kindly post your configuration report when you ask for help from this forum. If you do not post your configuration report we will not ask you for it but you will probably not get your problem solved, either.

K 2.0 support will cease on 31 August 2013 and this section of the forum will be closed and archived after that time and no further questions will be answered about this version.

Merged Change browser window title

More
13 years 3 months ago #139775 by teddysu81
Replied by teddysu81 on topic Change browser title
Oww... Okay, I solved it.

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

More
13 years 2 months ago #140148 by jemecb
Replied by jemecb on topic Change browser title
How did you solve it?

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

More
13 years 2 months ago - 13 years 2 months ago #140165 by Shimei
Last edit: 13 years 2 months ago by Shimei.

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

More
13 years 2 months ago #140602 by PetersenP
Replied by PetersenP on topic Change title order
Hello,

Currently the title of the pages of my forum give the Forum name + the name of the forum content, separated by ::.

I have already replaced the :: by |.

Now I would like to change the order of the title.

I found the .php file where this is defined, but I am not familiar with this language.

Currently it says (Forum name + title of content):

$title = KunenaFactory::getConfig()->board_title .' | '. $title;

I would like to have the order "content title" | "forum name".

I have tried many options to get this done, but didn't succeed.
Can anyone tell me how I have to change this piece of PHP code?

Thanks!

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

More
13 years 2 months ago #140606 by sozzled
Replied by sozzled on topic Change title order
G'day, PetersenP, and welcome to Kunena.

PetersenP wrote: I found the .php file where this is defined ... [and changed it to]:

$title = KunenaFactory::getConfig()->board_title .' | '. $title;

I would like to have the order "content title" | "forum name".


Replace the current line (that you have changed) with this:
Code:
$title = $title .' | '. KunenaFactory::getConfig()->board_title;
Please remember that any changes you make to original Kunena source files are your responsibility to maintain including making these changes again whenever there are future updates to Kunena.
The following user(s) said Thank You: PetersenP

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

More
13 years 2 months ago - 13 years 2 months ago #140617 by PetersenP
Replied by PetersenP on topic Change title order
Thanks, that worked!
I understand the implications.

Best regards
Last edit: 13 years 2 months ago by PetersenP.

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

Time to create page: 0.235 seconds