Hello, i use kide shoutbox on my
site, and i love it.
There's 2 things i really want to see in next version, if it's possible...
1 - There is a way to show 6 smileys on module, but show all in component?
Or something like show more, because i have 40 smileys that i want to add ^^
2 - Maybe would be nice if there's an option to show avatar in complete chat (not module)
So, please think about my ideas and Thank you for this component/module
EDIT:
I made a hack for this work:
First:
In /components/com_kide/helpers/kide.php
Find(Here is line 62):
$return = "";
foreach ($smilies as $k=>$s) {
if (!in_array($s,$aux)) {
$return .= "<a href=\"javascript:KIDE_insertSmile('$k')\"><img title='$k' alt='$k' src='$s' /></a>\n";
$aux[] = $s;
Change for:
$return = "";
$contar=0;
foreach ($smilies as $k=>$s) {
if (!in_array($s,$aux)) {
$return .= "<a href=\"javascript:KIDE_insertSmile('$k')\"><img title='$k' id='sm$contar' alt='$k' src='$s' /></a>\n";
$aux[] = $s;
$contar++;
Second:
In components/com_kide/assets/css/style.css
.module #sm(Smiley Number){display:none;}
Example:
.module #sm17,
.module #sm18,
.module #sm20,
.module #sm16
{
display:none;
}
You can see result here:
www.animespace.com.br/
(some smileys hidden)
And here all smileys:
www.animespace.com.br/component/option,com_kide/Itemid,158/view,kide/
Thanks
PS: How can i donate?
PS2: Sorry for the bad english...