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 Codes are not Working On my Websites , Am i Missing something

More
16 years 9 months ago - 16 years 9 months ago #25418 by nauman
Hello All

Once again a silly Question

Codes are not working on my website , Like Quote , Code, Bold, I ,Noone is working, If i add manually , it just shows up like,

<strong>Welcome to our websites!</strong>

All settings seem to b ok

Also Another Quick Question,On My Main Forum page, It just says , Categories--Website name

I wana off this option, As this th ing also happens here on kunena, It says, Categories First, then Kunena
I want title as, first site name, then Categories, or Latest Discussion

Need Help

Regards
Last edit: 16 years 9 months ago by nauman.

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

More
16 years 9 months ago #25419 by nauman
For my second Question, There is another thread, but ended without any Result

Any Experience

www.kunena.com/forum/136-templates-and-d...itle-in-kunena-forum


Regards

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

More
16 years 9 months ago - 16 years 9 months ago #25425 by sozzled
nauman wrote:

Codes are not working on my website , Like Quote , Code, Bold, I ,Noone is working, If i add manually , it just shows up like,

<strong>Welcome to our websites!</strong>

All settings seem to b ok

Let's start with the basics: Kunena doesn't do anything with standard HTML tags (those things wrapped in "angle brackets", like <strong>, for example). Kunena uses boardcode (sometimes referred to as BBcode ) which employs "tags" wrapped in square brackets. This is better discussed in the article A basic forum help page for beginners in the Wiki.

Therefore, if you try to use
Code:
<strong>Welcome to our websites!</strong>
this will display as

<strong>Welcome to our websites!</strong>

If you use
Code:
[b]Welcome to our websites![/b]
it will show as

Welcome to our websites!

==============================================================

Your second question:

On My Main Forum page, It just says , Categories--Website name

I wana off this option, As this thing also happens here on kunena, It says, Categories First, then Kunena
I want title as, first site name, then Categories, or Latest Discussion

I wrote some tips on how to achieve that in the discussion that you referred to in your second posting. Here is the answer (updated for K 1.5.4):

1. For the categories: edit the file ../components/com_kunena/templates/default_ex/fb_layout.php at line 68
From:
Code:
$document->setTitle(stripslashes($objCatParentInfo->name) . ' - ' . stripslashes($obj_fb_cat->getName()) . ' - ' . stripslashes($fbConfig->board_title));
To:
Code:
$document->setTitle(stripslashes($fbConfig->board_title) . ' - ' . stripslashes($obj_fb_cat->getName()) . ' - ' . stripslashes($objCatParentInfo->name));
Change at line 82
From:
Code:
$document->setTitle(stripslashes($obj_fb_cat->getName()) . ' - ' . stripslashes($fbConfig->board_title));
To:
Code:
$document->setTitle(stripslashes($fbConfig->board_title) . ' - ' . stripslashes($obj_fb_cat->getName()));
Change at line 126
From:
Code:
$document->setTitle($obj_post->subject . ' - ' . stripslashes($fbConfig->board_title));
To:
Code:
$document->setTitle(stripslashes($fbConfig->board_title) . ' - ' . $obj_post->subject);
2(a) For the my discussions: edit the file ../components/com_kunena/templates/default_ex/latestx.php at line 135
From:
Code:
$document->setTitle(_KUNENA_MY_DISCUSSIONS . ' - ' . stripslashes($fbConfig->board_title));
To:
Code:
$document->setTitle(stripslashes($fbConfig->board_title) . ' - ' . _KUNENA_MY_DISCUSSIONS);
2(b) For the recent discussions: change the same file as 2(a) at line 148
From:
Code:
$document->setTitle(_KUNENA_ALL_DISCUSSIONS . ' - ' . stripslashes($fbConfig->board_title));
To:
Code:
$document->setTitle(stripslashes($fbConfig->board_title) . ' - ' . _KUNENA_ALL_DISCUSSIONS);
Last edit: 16 years 9 months ago by sozzled.

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

More
16 years 9 months ago #25427 by JBHawaii
Sounds like a rokcandy issue, do you by chance use Rocket theme template?

Mahalo,
JBHawaii

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

More
16 years 9 months ago - 16 years 9 months ago #25429 by markjones
I am getting a similiar issue with BOLD.

If I mouse over the bold icon on my installation, it shows <strong>... see img attached



When I mouse over your bold, it is correct.

Yes, I am using a rockettheme template (if that helps)
Last edit: 16 years 9 months ago by markjones. Reason: added picture

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

More
16 years 9 months ago #25432 by sozzled
@markjones: Ah! :lol: The dreaded RokCandy-plugin-stuffs-up-Kunena disease! See the discussion BBCode not working .

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

Time to create page: 0.258 seconds