Добрый день, у меня стоит на сайте joomla Версия 1.5.17, и VirtueMart 1.1.4 stable. Проблема заключается в отображении контактной информации плательщика на сайте. Фото: Редактировал файл customer_info.tpl.php, убирал даже все поля о оставлял: <!-- Customer Information --> <!-- customer information ends --> Изначальный вид файла: Код (PHP): <?php if( !defined( '_VALID_MOS' ) && !defined( '_JEXEC' ) ) die( 'Direct Access to '.basename(__FILE__).' is not allowed.' ); /** * * @version $Id: customer_info.tpl.php 1439 2008-06-25 19:08:23Z soeren_nb $ * @package VirtueMart * @subpackage templates * @copyright Copyright (C) 2007-2008 soeren - All rights reserved. * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php * VirtueMart is free software. This version may have been modified pursuant * to the GNU General Public License, and as distributed it includes or * is derivative of works licensed under the GNU General Public License or * other free or open source software licenses. * See /administrator/components/com_virtuemart/COPYRIGHT.php for copyright notices and details. * * http://virtuemart.net */ ?> <!-- Customer Information --> <table border="0" cellspacing="0" cellpadding="2" width="100%"> <tr class="sectiontableheader"> <th colspan="2" align="left"><?php echo $VM_LANG->_('PHPSHOP_ORDER_PRINT_CUST_BILLING_LBL') ?></th> </tr> <tr> <td nowrap="nowrap" width="10%" align="right"><?php echo $VM_LANG->_('PHPSHOP_SHOPPER_LIST_NAME') ?>: </td> <td width="90%"><?php echo $db->f("first_name"). " " . $db->f("middle_name") ." " . $db->f("last_name"); ?> </td> </tr> <tr> <td nowrap="nowrap" width="10%" align="right"><?php echo $VM_LANG->_('PHPSHOP_ADDRESS') ?>: </td> <td width="90%"> <?php $db->p("address_1"); echo "<br />"; $db->p("address_2"); ?> </td> </tr> <tr> <td nowrap="nowrap" width="10%" align="right"><?php echo $VM_LANG->_('PHPSHOP_ORDER_PRINT_PHONE') ?>: </td> <td width="90%"> <?php $db->p("phone_2"); ?> </td> </tr> <tr> </td> </tr> <tr> <td nowrap="nowrap" width="10%" align="right"><?php echo $VM_LANG->_('PHPSHOP_ORDER_PRINT_EMAIL') ?>: </td> <td width="90%"> <?php $db->p("user_email"); ?> </td> </tr> <tr><td align="center" colspan="2"><a href="<?php $sess->purl( SECUREURL ."index.php?page=account.billing&next_page=$page"); ?>"> (<?php echo $VM_LANG->_('PHPSHOP_UDATE_ADDRESS') ?>)</a> </td> </tr> </table> <!-- customer information ends --> <br /> , но на сайте не чего не изменяется. Чистил кеш, убирал ссылки sh404SEF – бесполезно. Прогуглил вопрос – все говорят только о файле customer_info.tpl.php, подскажите, что может быть в моем случае? В файле ps_checkout.php закомментировал: Код (PHP): /* $q .= "INNER JOIN #__{vm}_country c ON (i.country=c.country_3_code OR i.country=c.country_2_code) ";*/ /* $q .= "LEFT JOIN #__{vm}_state s ON (i.state=s.state_2_code AND s.country_id=c.country_id) ";*/ Но Это решило проблемы только со страной...