- Posts: 4
- 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
Merged [Merged topic] Rockettheme RokCandy plugin causes problems with Kunena
Please Log in or Create an account to join the conversation.
- Jiminimonka
-
- Offline
- Elite Member
-
- YBAS!
EDIT: I just checked, it is changing the BBCode to <> instead of [], so they all need to be edited. Also it appears it does not affect old articles BBCode, just new ones.
J!1.7 K!1.7
Please Log in or Create an account to join the conversation.
- Jiminimonka
-
- Offline
- Elite Member
-
- YBAS!
This fixes RokCandy so that it no longer messes with your BBCode on Kunena.
Just in case the link doesn't work:
neutrino76 wrote: Well, there is a much better Rokcandy workaround, because it doesn't mess with your RokCandy at all:
/plugins/system/rokcandy.php find at line ~60
and after this line pasteCode:// Do BBCode replacements on the whole page function onAfterRender() {
Code:// Added to prevent loading on the Forums page, where it conflicted and caused a javascript error. global $option; if ($option == "com_kunena") { return; }
It ALMOST works, but there are still some bugs, like
-
will remain unchanged, but the [il] code all gets changed to <il>. Working on finding a more complete fix.
Please Log in or Create an account to join the conversation.
- statikregimen
-
- Offline
- New Member
-
- Posts: 1
- Thank you received: 0
Please Log in or Create an account to join the conversation.
When a user submits a post Kunena replaces the bbcode with the respective html. When a user tries to edit the post the reverse does not happen, so the post presentation breaks down as the html is saved as part of the message.
Please Log in or Create an account to join the conversation.
Fixed by stopping for Kunena in the plugin onAfterRender
if (JRequest::getVar('option') == "com_kunena")
return;
Please Log in or Create an account to join the conversation.