1

カスタム テーマでチェックアウト レビュー テンプレートを編集しようとしていますが、テーブルの列を並べ替えようとすると問題が発生します。

私は次のことをしました

  • カスタムテーマを編集しました - app/design/frontend//default/template/checkout/onepage/review/info.phtml
  • 基本テーマを編集 (テストとして) - app/design/frontend/base/default/template/checkout/onepage/review/info.phtml
  • すべてのキャッシュ管理を無効にしました
  • テンプレートのヒントを有効にしましたが、ページがレンダリングされません

カスタム テーマのテーブル クラスを次のように変更しました。

<table class="data-table test" id="checkout-review-table">

次のようにカスタム テーマの列を並べ替えましたが、変更が反映されません。

<th rowspan="<?php echo $rowspan ?>"><?php echo $this->__('Product Name') ?></th>
<th rowspan="<?php echo $rowspan ?>" class="a-center"><?php echo $this->__('Qty')?></th>
<th colspan="<?php echo $colspan ?>" class="a-center"><?php echo $this->__('Price')?></th>
<th colspan="<?php echo $colspan ?>" class="a-center"><?php echo $this->__('Subtotal') ?></th>

誰かが私を正しい方向に向けることができますか?

4

2 に答える 2

0

あなたは間違いなく適切なテンプレートを編集しているので、混乱を避けるために、すべての変更を基本テンプレートに戻し、カスタム テンプレートの info.phtml の新しいコピーから作業してください。

アップデート

<thead>
    <tr>
        <th rowspan="<?php echo $rowspan ?>"><?php echo $this->__('Product Name') ?></th>
        <th colspan="<?php echo $colspan ?>" class="a-center"><?php echo $this->__('Qty') ?></th>
        <th rowspan="<?php echo $rowspan ?>" class="a-center"><?php echo $this->__('Price') ?></th>
        <th colspan="<?php echo $colspan ?>" class="a-center"><?php echo $this->__('Subtotal') ?></th>
    </tr>
    <?php if ($this->helper('tax')->displayCartBothPrices()): ?>
        <tr>
            <th class="a-right"><?php echo $this->helper('tax')->getIncExcTaxLabel(false) ?></th>
            <th><?php echo $this->helper('tax')->getIncExcTaxLabel(true) ?></th>
            <th class="a-right"><?php echo $this->helper('tax')->getIncExcTaxLabel(false) ?></th>
            <th><?php echo $this->helper('tax')->getIncExcTaxLabel(true) ?></th>
        </tr>
    <?php endif; ?>
</thead>

ここに画像の説明を入力

于 2012-11-30T12:38:41.370 に答える
0

以前にこの問題がありました.SagePayまたはその他の支払い方法を使用している場合は、拡張機能フォルダーを確認してください.別のreview/info.phtmlファイルがあるはずです. これはあなたが探しているものです。

これが役に立てば幸いです、アレックス

于 2016-10-07T16:17:57.287 に答える