Live Helper Chat support forum.. Forum is locked. New place for questions - Github Discussions
You are not logged in.
Hi All,
I'm having some trouble with the tool and IE8.
Basically my issue is that when using the chat IE8 will crash for the user when replying to messages.
I have narrowed this issue down and have found that when the user types a message and presses enter to send it, IE will crash, if they type the message and click on the send button it works fine and the message is sent.
My operators will be using chrome so this is not an issue on the backend.
if its possible please can you tell me how i can disable the enter to send message feature on the user pages? if its disabled globally that ok but if it could be only on the user pages that would be better.
thank you for your help
Joe
Sorry but here works. I tried with IE debugger.
You should look at this line.
https://github.com/LiveHelperChat/livehelperchat/blob/master/lhc_web/design/defaulttheme/tpl/lhchat/chat.tpl.php#L51
In general IE8 is not support by LHC. So use it at your own risk
Offline
Hi Rem,
Thanks for getting back to me, i'd rather not be using IE8 :-( but in my situation its a company standard.
i did manage to find that the other day but wasn't sure what it did so left it alone :-p i'll try commenting out that line to see if that works
thank you for your help
Thats fixed it, thank you
Just i suggest comment out the content not whole script like in main lhc.js there is callback to unattatch event. So just make sure there is no js error after users closes a widget.
Offline
so would you suggest doing it like this
<script type="text/javascript"> <!-- jQuery('#CSChatMessage').bind('keydown', 'return', function (evt){ lhinst.addmsguser(); return false; });--> lhinst.initTypingMonitoringUser('<?php echo $chat_id?>'); </script>
or this<!-- <script type="text/javascript">
<!--jQuery('#CSChatMessage').bind('keydown', 'return', function (evt){ lhinst.addmsguser(); return false; });--> lhinst.initTypingMonitoringUser('<?php echo $chat_id?>'); </script>-->
or another way
thanks again
I try
Offline