Не могу отредоктировать "Контактная информация плательщика "

Тема в разделе "VirtueMart", создана пользователем SBARTACO, 19.04.2011.

  1. Offline

    SBARTACO Недавно здесь

    Регистрация:
    19.04.2011
    Сообщения:
    8
    Симпатии:
    0
    Пол:
    Мужской
    Добрый день, у меня стоит на сайте joomla Версия 1.5.17, и VirtueMart 1.1.4 stable. Проблема заключается в отображении контактной информации плательщика на сайте. Фото:
    [​IMG]
    Редактировал файл customer_info.tpl.php, убирал даже все поля о оставлял:
    <!-- Customer Information -->
    <!-- customer information ends -->
    Изначальный вид файла:
    Код (PHP):
    1. <?php
    2. if( !defined( '_VALID_MOS' ) && !defined( '_JEXEC' ) ) die( 'Direct Access to '.basename(__FILE__).' is not allowed.' );
    3. /**
    4. *
    5. * @version $Id: customer_info.tpl.php 1439 2008-06-25 19:08:23Z soeren_nb $
    6. * @package VirtueMart
    7. * @subpackage templates
    8. * @copyright Copyright (C) 2007-2008 soeren - All rights reserved.
    9. * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
    10. * VirtueMart is free software. This version may have been modified pursuant
    11. * to the GNU General Public License, and as distributed it includes or
    12. * is derivative of works licensed under the GNU General Public License or
    13. * other free or open source software licenses.
    14. * See /administrator/components/com_virtuemart/COPYRIGHT.php for copyright notices and details.
    15. *
    16. * http://virtuemart.net
    17. */
    18. ?>
    19. <!-- Customer Information -->
    20.     <table border="0" cellspacing="0" cellpadding="2" width="100%">
    21.         <tr class="sectiontableheader">
    22.             <th colspan="2" align="left"><?php echo $VM_LANG->_('PHPSHOP_ORDER_PRINT_CUST_BILLING_LBL') ?></th>
    23.         </tr>
    24.         <tr>
    25.            <td nowrap="nowrap" width="10%" align="right"><?php echo $VM_LANG->_('PHPSHOP_SHOPPER_LIST_NAME') ?>: </td>
    26.            <td width="90%"><?php
    27.              echo $db->f("first_name"). " " . $db->f("middle_name") ." " . $db->f("last_name"); ?>           </td>
    28.         </tr>
    29.         <tr>
    30.            <td nowrap="nowrap" width="10%" align="right"><?php echo $VM_LANG->_('PHPSHOP_ADDRESS') ?>: </td>
    31.            <td width="90%">
    32.            <?php
    33.              $db->p("address_1");
    34.              echo "<br />";
    35.              $db->p("address_2");
    36.            ?>           </td>
    37.         </tr>
    38.         <tr>
    39.            <td nowrap="nowrap" width="10%" align="right"><?php echo $VM_LANG->_('PHPSHOP_ORDER_PRINT_PHONE') ?>: </td>
    40.            <td width="90%">
    41.            <?php
    42.              $db->p("phone_2");
    43.            ?>           </td>
    44.         </tr>
    45.         <tr>
    46.         </td>
    47.         </tr>
    48.         <tr>
    49.            <td nowrap="nowrap" width="10%" align="right"><?php echo $VM_LANG->_('PHPSHOP_ORDER_PRINT_EMAIL') ?>: </td>
    50.            <td width="90%">
    51.            <?php
    52.              $db->p("user_email");
    53.            ?>           </td>
    54.         </tr>
    55.         <tr><td align="center" colspan="2"><a href="<?php $sess->purl( SECUREURL ."index.php?page=account.billing&next_page=$page"); ?>">
    56.             (<?php echo $VM_LANG->_('PHPSHOP_UDATE_ADDRESS') ?>)</a>
    57.             </td>
    58.         </tr>
    59.     </table>
    60.     <!-- customer information ends -->
    61.     <br />

    , но на сайте не чего не изменяется. Чистил кеш, убирал ссылки sh404SEF – бесполезно. Прогуглил вопрос – все говорят только о файле customer_info.tpl.php, подскажите, что может быть в моем случае?
    В файле ps_checkout.php закомментировал:

    Код (PHP):
    1. /*  $q .= "INNER JOIN #__{vm}_country c ON (i.country=c.country_3_code OR i.country=c.country_2_code) ";*/
    2.     /*  $q .= "LEFT JOIN #__{vm}_state s ON (i.state=s.state_2_code AND s.country_id=c.country_id) ";*/

    Но Это решило проблемы только со страной...
     
    Последнее редактирование: 19.04.2011
  2.  

Поделиться этой страницей

Загрузка...