Re: How to automatically connect/pass-through an authenticated website visitor to a LiveSupport chat session?

  •  06-03-2011, 3:24 AM

    Re: How to automatically connect/pass-through an authenticated website visitor to a LiveSupport chat session?

    Hi pjs75,
     
    Question #1
     
    1. Open file "\CuteSoft_Client\CuteChat\SupportClient.aspx" .
     
    2. Add the code below to the bottom of the page above.
     
        <script>
        window.onload=function()
        {
          var input_name=document.getElementById("input_name");
          //set the user name here
            input_name.value="ken";
            call_submit_form();  
        }
        
        </script>
     
    3. Now the page will set the requirement directly.
     
    4. The only thing you need to set just input_name.value="ken";
     
    you can use a default value like me. Or set it dynamically yourself.
     
     
    Question #2
     
    <script src="http://cutesoft.net/CuteSoft_Client/CuteChat/Support-Image-Button.js.aspx"></script>
     
    Change the red part  to your site url.
     
     
    regards,
     
    ken
View Complete Thread