Announcement

Collapse
No announcement yet.

adding Live Chat monitoring code

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    adding Live Chat monitoring code

    Question1 - I recently got V.7 and managed to add an extra link on the top menu bar of the "best" seller template. This link, links customers to the live chat service and it pops up. Is there a way I can make this pop up appear without showing the url? [frameless?], also would like it to be a particuar size i.e 400 x 300 or something.

    Question 2- As some may know, the live chat service has code that have to add to each page. I would like to know how to go about it. I would like to use this javascript to monitor the visitors etc. Ideally if it could be added such that its on every page in the catalog / shop area.

    <!-- BEGIN ProvideSupport.com Visitor Monitoring CODE -->
    <script language="JavaScript" src="http://image.providesupport.com/js/accountname/monitor.js"></script><a href="http://www.providesupport.com" target="_blank"><img src="http://image.providesupport.com/image/accountname.gif" border="0"></a>
    <!-- END ProvideSupport.com Visitor Monitoring CODE -->

    #2
    Hi Kimberley,

    to add a link to the chat in a new window with no frame (border) etc add the following to the <head> part of the Act_Primary.html template

    Code:
    <script language="JavaScript" type="text/JavaScript">
    <!--
    function MM_openBrWindow(theURL,winName,features) { //v2.0
      window.open(theURL,winName,features);
    }
    //-->
    </script>
    and add the following where you want the text link to chat to appear in the navigation bar
    Code:
    <a href="javascript:;" onClick="MM_openBrWindow('chat.html','','toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,width=600,height=300')">CHAT HERE </a>
    you can turn the options on by using "yes" and change the size of the new window accordingly currently 600 x 300

    The second code you have shown above should again be placed into the Act_Primary.html template where you want it to appear.

    Best to make a copy of the Act_Primary template before you start

    HTH


    Bikster
    SellerDeck Designs and Responsive Themes

    Comment


      #3
      adding Live Chat monitoring code

      Thanx for the help. I really appreciate it.
      The other script needs to be in the body somewhere it doesn't really matter where it goes, as it is hidden.
      I think you are right , I should really make a copy before i mess everything up.
      Thanks v. much

      Comment


        #4
        The second code does need to be in the <body> of the Act_Primary but as it is inserting an image direct from the providesupport website you need to place this somewehere it will fit in with the rest of your design... or remove the image and use a text link if more inkeeping with your layout.


        Bikster
        SellerDeck Designs and Responsive Themes

        Comment


          #5
          Aha - I see that the image is just a 1x1 transparent pixel so I guess that is just used for tracking purposes only rather than a link for support... in which case I would place it at the bottom of the Act_Primary out of the way.


          Bikster
          SellerDeck Designs and Responsive Themes

          Comment


            #6
            Thanx, this works brilliantly

            Comment

            Working...
            X