![]() |
Quote:
What would be nice is if you could have usergroups shown in the color that the group is assigned. See, on our board, the mods are yellow, supermods are light blue, and admins are bold--that would be spectacular! |
Quote:
I have already amneded things slightly to show the time using <span class="time"> so that it matches the rest of vB. |
Quote:
|
Hi, dream!!
Thank you for the chatbox!! I have a question! jeje.. Who can I limit the number of smiles, We have more than 150 smiles, and this spend too time to show all smiles? Could you help me with this issue? Thank you in advance! |
Hi agsguar,
You need to edit your chatbox.php to limit the number of smilies In chatbox.php, find $i = 0; while( $smilie = $db->fetch_array( $result ) ) { and change it for $i = 0; $i2 = 0; while( $smilie = $db->fetch_array( $result ) AND $i2 < XXX ) { $i2++; Where XXX is the number of smilies to show Let me know if this works for you |
Dream,
I haven't marked installed yet, because I'm having an alignment problem. I've been all over the code in the templates and php files and can not resolve this. I've tried everything. Everything inside the chat box is aligned to the center. Could you assist me by telling me how and where to place the code to force it to align to the left? I am using the default style, so it's not a style issue, well, as far as I can see. The title of the chatbox is aligned to the left, but the input box and all shouts are centered. Thank you, Damion |
One user had this problem and posted his fix
https://vborg.vbsupport.ru/showpost....&postcount=403 I'm not sure why this is happening with you guys |
Is working perfect..
thank you.. one more... (sorry) In my case I have a many forders in smiles folder. example. /images/smilies/animal /images/smilies/default /images/smilies/special /images/smilies/fresas /images/smilies/general /images/smilies/grandes /images/smilies/nuevas and the hack take this directory /images/smilies/nuevas. this images are too large, I preffer to use /images/smilies/general how can change this option. i dont have problem to make this change manually. Thank you in advance.!! |
So, just show smilies in /images/smilies/general ? Or other folders as well?
|
hello,
do this mod takes more bandwith? |
Quote:
Thank you! |
Quote:
MARKED AS INSTALLED!!!! :D:cool: |
Updated, version 1.8
- Forced align="left" on main <div>s because people were having problems with the chatbox content being centered. - Changed javascript function name from deleteShout() to deleteMessage(), because this is a chatbox not a shoutbox :P and the name was visible to users on mouseover - Added time CSS class to times so it matches the rest of the forum (btw Mark I always loved your forum ;) since I made games for v3arcade) - Added javascript isRefreshing check, so the chatbox won't have two parallel refresh instances and show duplicate messages, to fix problem on slower connections. - When showing latest messages at the bottom, the chatbox now will only scroll to the bottom when there are new messages. (only works if you are not updating all messages on each refresh) - Fixed javascript warning, was getting shoutsDiv <div> by it's name, wasn't defining shoutsDiv variable. (wonder how it worked in the first place) - Added option to update all messages on refresh. This will fix deleted messages not being removed from users chatboxes, but can highly increase resource usage. The default method is getting only the new messages. - Added message colors. You must enable it in the Chatbox options. You can change the available colors in the options. Message editing won't be added because the user can easily delete his message and resend it. Also because the code level of complexity would highly increase because of the way things are done. Also I wasn't able to remove the chatbox from the Who's Online list when the user is viewing the forum home, sorry. |
Thanks for the update. There's an issue with the mouseover time though. Check my webpage...
|
Reverted the time code in chatbox.php to that of v1.7, and all is well.
|
Getting a funny number on top of the input box when not logged in. The color selection box should be locked for not logged in users too. Think I'll just go back to v1.7 for now.
|
Hi dream...
Houston, We have a problem!! Hi, i have a problem with the 1.8 version.. this is the message: Quote:
Please help us!! thank you!! |
Database error in vBulletin 3.6.7:
Invalid SQL: DELETE FROM vb_productdependency WHERE productid = 'chatbox_lite'; MySQL Error : Lock wait timeout exceeded; try restarting transaction Error Number : 1205 Date : Friday, June 1st 2007 @ 08:55:08 AM Script : http://www.xxxxx-xxxx.com/vb/admincp...=productimport Referrer : http://www.xxxx-xxx.com/vb/admincp/p...?do=productadd IP Address : 125.209.xx.xx Username : xxxx-xxxx Classname : vb_database well is there any solution ? |
Quote:
Quote:
Quote:
|
Quote:
|
Quote:
|
Arco let me know if the update solves the problems you were having.
|
I got this when loading the product.
Code:
Database error in vBulletin 3.6.7: |
Did you install the product file before? Have you reinstalled 1.7 product file after installing the 1.8 file? Try to remove the code that creates the color field in the table if you did.
|
Ok, installed and the time issue is fixed now.
About the numbers, here's a clip from viewing the selected source. HTML Code:
<div class="smallfont" align="left"><span id="timeNow">1180742664</span><form action="javascript:postShout()" name="chatboxForm"><input name="nofocus" type="hidden"><input name="isrefresh" type="hidden"> <span id="timeNow">1180742664</span> |
Quote:
|
There must be something with vBa setting the $time variable to a non Null value. Update your chatbox.php, I updated the zip file. All should work now.
|
Yeah perfect!! Everything as it should be now. Thanks for fixing it so soon. Simply excellent! :up: :)
If I can just make one last suggestion... :) When you hover the mouse over the X, it shows the time as when hovering over the username. Could that be changed to perhaps "Delete"? |
Np :) cheers
|
Quote:
|
Updated, version 1.9
- Added option to disable auto refreshing for guests. This can save resources if you have a low refresh rate. |
Quote:
I don't plan on updating this mod anymore, it now has all the features I think it should have. |
Quote:
while( $smilie = $db->fetch_array( $result ) ) { echo '<td class="alt1" align="center">' . chatbox_make_smilie_link($smilie) . "</td>\n"; $i++; if ($i >= $smiliecolumns) { echo "</tr><tr>\n"; $i = 0; } } for while( $smilie = $db->fetch_array( $result ) ) { if ($smilie[smiliepath] == '/images/smilies/general') { echo '<td class="alt1" align="center">' . chatbox_make_smilie_link($smilie) . "</td>\n"; $i++; if ($i >= $smiliecolumns) { echo "</tr><tr>\n"; $i = 0; } } } If that doesnt work, try using '/images/smilies/general/' or 'images/smilies/general' or 'images/smilies/general/' Also don't forget to redo the code change I told you about before. |
Thank you for the Dream's Chatbox :) There are many interesting options.
|
Quote:
|
Thanks for the update Dream ;)
|
No problem :)
Quote:
|
Quote:
I tested it, and it works perfectly ;) I will translate it soon. If you want, i can post here the french language of the chatbox. Regards, Sofia. |
Sure, if you post it I'll put it in the downloads. Also if VBDev wants to use any option in this chatbox in MGC Chatbox he has my permission.
|
Quote:
I'm going to go to bed. Good night :D |
All times are GMT. The time now is 01:42 AM. |
Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|