Merhaba,
Örnek olarak şöyle anlatayım:

linuxhosting.tpl dosyası için oluşturduğunuz php dosyasının içerisine şu kodları ekleyiniz ;

<?php define("CLIENTAREA",true);
 require("init.php");
 $_LANG['keywords'] = "Örnek Hosting Sayfası İçin Keyword Alanı";
 $_LANG['description'] = "Örnek Hosting Sayfası İçin Description Alanı";
 $file = $_SERVER["SCRIPT_NAME"]; $break = Explode('/', $file);
 $pfile = $break[count($break) - 1]; 
 $pfile = str_replace(".php", "", $pfile);
 $pagetitle = "LİNUX HOSTİNG SAYFASI";
 $ca = new WHMCS_ClientArea(); 
 $ca->setPageTitle($pagetitle);
 $ca->addToBreadCrumb('index.php',$whmcs->get_lang('globalsystemname'));
 $ca->addToBreadCrumb($pfile.'.php',$pagetitle); 
 $ca->initPage(); $ca->assign('subpage', "1");
 $ca->setTemplate($pfile); $ca->output(); ?>
Daha sonra temanızın header.tpl dosyasının içinde <head></head> taglarının arasına şu kodları ekleyiniz:

<meta name="keywords" content="{if $filename eq "index"}{$companyname} - {$pagetitle}{else}{$LANG.keywords}{/if}" />
<meta name="description" content="{if $filename eq "index"}{$companyname} - {$pagetitle}{else}{$LANG.description}{/if}" />