- Posts: 228
- Thank you received: 1
Kunena 7.0.5 & Kunena 6.4.11 – Security Updates Released
The Kunena team has announce the arrival of Kunena 7.0.5 [K 7.0.5] 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.
The Kunena team is also pleased to announce the eleventh version of Kunena 6.4, a native Joomla extension for Joomla! 5.0, 5.1, 5.2, 5.3, 5.4 and 6.0.
Question increase max char in profile website url
I am still unable to find out where I can increase the max char for the image and link buttons on the toolbar. I'm guessing it's a value in a file somewhere like I did to increase the max char for the website url.
[strike]No need to start a new topic - this is related. For URL question it can be configured in the backend: Kunena configuration >> BBCode
[strike]Trim long URLs[/strike]
[strike]"NO"[/strike]
Should work for both[/strike]
EDIT: Scratch that - I didn't read the question properly and that doesn't seem to work at all - I'll look into the PHP changes for you now
Please Log in or Create an account to join the conversation.
I'm sorry if I seem to be argumentative on this point, but I'm only trying to clarify matters ... not confuse them.
Blue Eagle vs. Crypsis reference guide
Read my blog and
Please Log in or Create an account to join the conversation.
/components/com_kunena/template/default/smile.class.php
Please Log in or Create an account to join the conversation.
Go to line 317 of smile.class.php and you can edit it there
/components/com_kunena/template/default/smile.class.php
I'm showing this for the benefit of other users .... you'll find the URL BBcode input lenght
just edit maxlength="100" property to change this.<?php @print(_KUNENA_EDITOR_LINK_URL); ?><input name="url" type="text" size="40" maxlength="100" value="http://" onmouseover = "javascript:kunenaShowHelp('<?php @print(_KUNENA_EDITOR_HELPLINE_LINKURL);?>')">
<?php @print(_KUNENA_EDITOR_LINK_TEXT); ?><input name="text2" type="text" size="30" maxlength="100" onmouseover = "javascript:kunenaShowHelp('<?php @print(_KUNENA_EDITOR_HELPLINE_LINKTEXT);?>')">
It is a similar situation for an Image URL length
<?php @print(_KUNENA_EDITOR_IMAGE_SIZE); ?><input name="size" type="text" size="10" maxlength="10" onmouseover = "javascript:kunenaShowHelp('<?php @print(_KUNENA_EDITOR_HELPLINE_IMAGELINKSIZE);?>')">
<?php @print(_KUNENA_EDITOR_IMAGE_URL); ?><input name="url2" type="text" size="40" maxlength="100" value="http://" onmouseover = "javascript:kunenaShowHelp('<?php @print(_KUNENA_EDITOR_HELPLINE_IMAGELINKURL);?>')">
Please Log in or Create an account to join the conversation.
@sozzledA separate discussion topic would most definitely clarify these completely separate matters.
To me these are totally related and simply deal with changing the default inputbox lengths with Kunena in general. The solutions will apply to all areas of Kunena not specifically to the two that Joachim wanted to change. The same principle idea is also behind subject lengths, announcements titles etc. The same idea just different PHP files.
But if you want them split into two topics - i will do that
Please Log in or Create an account to join the conversation.
Blue Eagle vs. Crypsis reference guide
Read my blog and
Please Log in or Create an account to join the conversation.