Kunena 6.3.0 released

The Kunena team has announce the arrival of Kunena 6.3.0 [K 6.3.0] in stable which is now available for download as a native Joomla extension for J! 4.4.x/5.0.x/5.1.x. This version addresses most of the issues that were discovered in K 6.2 and issues discovered during the last development stages of K 6.3

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
14 years 8 months ago - 14 years 8 months ago #1 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: 14 years 8 months ago by nauman.

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

More
14 years 8 months ago #2 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
14 years 8 months ago - 14 years 8 months ago #3 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: 14 years 8 months ago by sozzled.

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

More
14 years 8 months ago #4 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
14 years 8 months ago - 14 years 8 months ago #5 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)
Attachments:
Last edit: 14 years 8 months ago by markjones. Reason: added picture

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

More
14 years 8 months ago #6 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.

More
14 years 8 months ago #7 by Lintzy
nauman wrote:

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

Regards



@ markjones and @ nauman:
Which Kunena version do you have installed?
Which template is running?

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

More
14 years 8 months ago #8 by markjones
I have Rockettheme Versatility4 v1.5.2, not sure which version of RokCandy.. (sorry)

and Kunena om_kunena_v1.5.4_stable_b1730_2009-07-11

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

More
14 years 8 months ago - 14 years 8 months ago #9 by Lintzy
Hello markjones, did you test it with joomla template rhuk milkway and Kunena (template default_ex)?
Last edit: 14 years 8 months ago by Lintzy.

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

More
14 years 8 months ago #10 by sozzled
markjones wrote:

I have Rockettheme Versatility4 v1.5.2, not sure which version of RokCandy.. (sorry)

and Kunena om_kunena_v1.5.4_stable_b1730_2009-07-11

Yes, well don't mind me. I'm standing back to allow Lintzy to solve this problem for you.

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

Time to create page: 0.522 seconds