Extend CMS class in classes/CMS.php and add this method:
public static function getCMSTitle($id_cms,$id_lang){
$cms = new CMS($id_cms, $id_lang);
return $cms->meta_title;
}
In page tpl :
{CMS::getCMSTitle(14,2)}
public static function getCMSTitle($id_cms,$id_lang){
$cms = new CMS($id_cms, $id_lang);
return $cms->meta_title;
}
In page tpl :
{CMS::getCMSTitle(14,2)}