Ho capito, avevo messo il codice nel
file product_info.php
che c'è nella cartella languages/italian
invece va messo nel file omonimo
che che c'è nella root.
Sostituendo il
pezzo
<title><?php echo TITLE; ?></title>
con
<?php ** $product_info_query = tep_db_query("select pd.products_name, p.products_model from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_status = '1' and p.products_id = '" . (int)$HTTP_GET_VARS['products_id'] . "' and pd.products_id = p.products_id and pd.language_id = '" . (int)$languages_id . "'"); $product_info = tep_db_fetch_array($product_info_query); $products_name = $product_info['products_name']; ** ?> <!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN"> <html <?php echo HTML_PARAMS; ?>> <head> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> <title>**<?php echo TITLE . " - " . $products_name; ?>**</title>