livezilla

How to Remove LiveZilla’s Footer/Credits From Version 3.3.2.2

This is a sequal to my former livezilla post, How to Remove LiveZilla’s Footer/Credits. In this post I will cover some simple changes to the version 3.3.2.2. I decided to cover this version because it was the last open source version before they went corporate… The objectives will remain the same:

  • remove all Open Source branding…
  • edit the carrier_logo.gif image to represent you company’s brand/logo
  • change the livezilla header breadcrumb
  • change footer code that shows LiveZilla Credits

If you haven’t already figured out to install the livezilla server files in a folder called live-chat or live-support. Do it now, its SEO friendly :) Once you have installed your server files make sure they are located one level up of your root directory (root:/live-chat/) this will make everything look more professional in the long run. Once the steps above have been completed locate the file named lz_chat_frame.4.1.tpl this file should be located at: root:/live_chat/templates/frames/ once located the file should look similar to this: lz_chat_frame.4.1.tpl

 

<!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.01 Transitional//EN”>

<html>
<head>
<META NAME=”robots” CONTENT=”index,follow”>
<title><!–config_gl_site_name–></title>
<link rel=”stylesheet” type=”text/css” href=”./templates/style.css”>
</head>
<body topmargin=”0″ leftmargin=”0″>
<div id=”lz_chat_param”><!–param–></div>
</body>
</html>

 

Remove <!–param–> and repace it with your company name so it looks like the source below. Updated lz_chat_frame.4.1.tpl

 

<!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.01 Transitional//EN”>

<html>
<head>
<META NAME=”robots” CONTENT=”index,follow”>
<title><!–config_gl_site_name–></title>
<link rel=”stylesheet” type=”text/css” href=”./templates/style.css”>
</head>
<body topmargin=”0″ leftmargin=”0″>

<div id=”lz_chat_param”>www.mywebsite.com</div></body></html>

 

This takes care of the footer..   Now lets focus on the header…   We need to find the following comment and delete it or replace it with your company brand/name
<!–config_gl_site_name–> You can find these comments in the following template files…

  1. lz_chat_frame.3.2.login.0.0.tpl (Line 13)
  2. lz_chat_frame.3.2.mail.tpl (Line 14)

Now Lets make sure our page title displays the right brand/name We need to find the following comments and remove/replace them with your brand/name
<!–config_gl_site_name–>
You can find these comments in the following template files…

  1. lz_chat_frame.1.1.tpl (Line 5)
  2. lz_chat_frame.3.2.chat.0.0.tpl (Line 5)
  3. lz_chat_frame.3.2.chat.2.0.tpl (Line 5)
  4. lz_chat_frame.3.2.chat.3.0.tpl (Line 5)
  5. lz_chat_frame.3.2.chat.4.0.tpl (Line 5)
  6. lz_chat_frame.3.2.chat.5.0.tpl (Line 5)
  7. lz_chat_frame.3.2.chat.tpl (Line 6)
  8. lz_chat_frame.3.2.login.0.0.tpl (Line 5)
  9. lz_chat_frame.3.2.login.1.0.tpl (Line 5)
  10. lz_chat_frame.3.2.login.tpl (Line 5)
  11. lz_chat_frame.3.2.mail.tpl (Line 5)
  12. lz_chat_frame.4.1.tpl (Line 5)

After Removing, update files and your good to go! Thats it! Kiss the title, footer and breadcrumb’s gone!

 

If you have any questions just hit me up below.

Published by

Miguel

I’m a bilingual Network Engineer. I have over 20 Years of Professional experience in Computer Science & Information Technology. I currently own and operate Web Semantics (www.websemantics.com) in Vancouver, Washington. I provide bilingual (English & Spanish) enterprise-level IT support to small and medium-sized businesses across the West Coast. *** Soy un ingeniero de redes bilingüe. Tengo más de 20 años de experiencia profesional en ciencias de la computación y tecnología de la información. Actualmente poseo y opero Web Semantics (www.websemantics.com) en Vancouver, Washington. Proporciono soporte de IT/Informática bilingüe (inglés y español) a nivel empresarial a pequeñas y medianas empresas en toda la costa oeste.

Leave a Reply