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 am a bilingual Network Engineer with over 20 years of professional experience in computer science and information technology. I am the founder and operator of Web Semantics, based in Vancouver, Washington, where I design, secure, and manage enterprise-grade infrastructure for small and mid-sized businesses across the West Coast. I provide bilingual IT support in English and Spanish, specializing in network architecture, systems engineering, security, and operational resilience. Soy un ingeniero de redes bilingüe con más de 20 años de experiencia profesional en ciencias de la computación y tecnología de la información. Soy fundador y operador de Web Semantics, con sede en Vancouver, Washington, donde diseño, protejo y administro infraestructura empresarial para pequeñas y medianas empresas en la costa oeste. Ofrezco soporte de IT bilingüe en inglés y español, con especialización en arquitectura de redes, ingeniería de sistemas, seguridad y resiliencia operativa.

Comments are closed.