robertk1 Posted May 17, 2009 Posted May 17, 2009 Hi Has anyone added a LiveZilla graphical chat button to their cart? I have successfully added a text link to our left panel, however would like to have the graphic link used. Any ideas how to accomplish this? It would work either in the left panel or the header (justify right). Thanks in advance for any help ....
♥geoffreywalton Posted May 17, 2009 Posted May 17, 2009 For how to add image links see www.w3schools.com. Enjoy G Need help installing add ons/contributions, cleaning a hacked site or a bespoke development, check my profile Virus Threat Scanner My Contributions Basic install answers. Click here for Contributions / Add Ons. UK your site. Site Move. Basic design info. For links mentioned in old answers that are no longer here follow this link Useful Threads. If this post was useful, click the Like This button over there ======>>>>>.
robertk1 Posted May 17, 2009 Author Posted May 17, 2009 This doesn't show what I need .... oscommerce is PHP code, how do I add this to it? I tried several methods that either did nothing or crashed the cart. <!-- http://www.LiveZilla.net Chat Button Link Code --><a href="java script:void(window.open('http://xxx.com/zilla/livezilla.php','','width=600,height=550,left=0,top=0,resizable=yes,menubar=no,location=yes,stat us=yes,scrollbars=yes'))"><img src="http://xxx.com/zilla/image.php?id=02" width="191" height="69" border="0" alt="LiveZilla Live Help"></a><noscript><div><a href="http://xxx.com/zilla/livezilla.php" target="_blank">Start Live Help Chat</a></div></noscript><!-- http://www.LiveZilla.net Chat Button Link Code -->
robertk1 Posted May 17, 2009 Author Posted May 17, 2009 Found it .... by placing the code outside the <?php ... ?> code, it places the button in the left column. Thanks for your help!
gregy Posted June 8, 2009 Posted June 8, 2009 best was is to create new infobox and put the code into infobox, than just call it in left column. If you want to have it also for secure server, install server (FZ) on secure server and call chat button also on normal server .. see www.vstopnice.com
solarplexus Posted December 2, 2009 Posted December 2, 2009 This is how I did it. New file in includes/boxes/livehelp.php Contents of livehelp.php : <!-- livehelp //--> <tr> <td> <?php $info_box_contents = array(); $info_box_contents[] = array('text' => BOX_HEADING_LIVEHELP); new infoBoxHeading($info_box_contents, false, false); $info_box_contents = array(); $info_box_contents[] = array('align' => 'center', 'width' => 600, 'text' => '<a href="javascript:void(window.open(\'http://www.website.com/livechat/livezilla.php\',\'\',\'width=600,height=600,left=0,top=0,resizable=yes,menubar=no,location=yes,status=yes,scrollbars=yes\'))"><img src="http://www.website.com/livechat/image.php?id=04" width="140" height="40" border="0" alt="Live Help - Name of Website" /></a><noscript><div><a href="http://www.website.com/livechat/livezilla.php" target="_blank">Start Live Help Chat</a></div></noscript>'); new infoBox($info_box_contents); ?> <!-- http://www.LiveZilla.net Tracking Code --><div id="livezilla_tracking" style="display:none"></div><script language="JavaScript" type="text/javascript"> <!-- DON'T REMOVE ANY LINE BREAKS--> <!-- var script = document.createElement("script");script.type="text/javascript";var src = "http://www.website.com/livechat/server.php?request=track&output=jcrpt&nse="+Math.random();setTimeout("script.src=src;document.getElementById('livezilla_tracking').appendChild(script)",1); // --> </script><!-- http://www.LiveZilla.net Tracking Code --> </td> </tr> <!-- livehelp_eof //--> Then call the box in column_left.php
Recommended Posts
Archived
This topic is now archived and is closed to further replies.