- Posts: 9
- 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
Question Mistyping error in "How to add new topics icons" Wiki Article
The text :
<input type = "radio" name = "topic_emoticon" value = "8"<?php echo $selected==7?" checked=\"checked\" ":"";?>/>
<img src = "<?php echo KUNENA_URLEMOTIONSPATH ;?>new_icon.gif" alt = "" border = "0" />
Should be:
<input type = "radio" name = "topic_emoticon" value = "8"<?php echo $selected==8?" checked=\"checked\" ":"";?>/>
<img src = "<?php echo KUNENA_URLEMOTIONSPATH ;?>new_icon.gif" alt = "" border = "0" />
Please correct it
Please Log in or Create an account to join the conversation.
The wiki is open to all people which are registred into Kunena.com, just use the same login and password that on kunena.com, so you can do yourself, add new articles, fixes this kind of errors.
I don't provide support by PM, because this can be useful for someone else.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
I don't provide support by PM, because this can be useful for someone else.
Please Log in or Create an account to join the conversation.
I realased few days ago that the custom added icons dont work if they have id bigger than "7". And i have the solution for you guys!
Add this to the "how to add custom topic icons wiki page"
Open: template\default\post.php and find: (its around line 222)
And change to:$topic_emoticon = ($topic_emoticon < 0 || $topic_emoticon > 7) ? 0 : $topic_emoticon;
$topic_emoticon = ($topic_emoticon < 0 ) ? 0 : $topic_emoticon;
This will remove the check that forces the icons with id bigger than "7" to become with id "0".
If you want to keep the checking and have your custom icons working just change the "7" to your bigger topicicon id from your array.
Please Log in or Create an account to join the conversation.
I changed the post.php in the default template but it didn't display the new icon when i selected it in the new thread.
I use a different template. Is this maybe the solution, why i can not see the new icon? Please can you help me again?
Thanks
Martin
Please Log in or Create an account to join the conversation.