Magento表头栏在产品评论博客结帐

时间:2014-07-23 22:36:54

标签: php html xml magento

有没有人在Magento的结帐页面的reivew / info.phtml模板中遇到这个奇怪的问题。我在源代码中有5个表头标题,即项目,描述,价格,数量和小计:

<thead>
        <tr>
            <th><?php echo $this->__('Item') ?></th>  
            <th class="a-center"><?php echo $this->__('Description') ?></th>           
            <th class="a-center"><?php echo $this->__('Price') ?></th>
            <th class="a-center"><?php echo $this->__('Qty') ?></th>
            <th class="a-center"><?php echo $this->__('Subtotal') ?></th>
        </tr>
    </thead>

但是当我查看我的结帐页面时,第二个消失了。我检查了元素,也许它只是通过CSS隐藏,但事实并非如此。我的结帐产品评论功能块中仅显示第4个标题,如屏幕截图所示:http://i.imgur.com/kbEP29Z.png

您可能已经注意到,描述标题已消失。但是当我将价格移到项目下方时,这就是问题所在,例如:

   <thead>
        <tr>
            <th><?php echo $this->__('Item') ?></th>  
            <th class="a-center"><?php echo $this->__('Price') ?></th>
            <th class="a-center"><?php echo $this->__('Description') ?></th>           
            <th class="a-center"><?php echo $this->__('Qty') ?></th>
            <th class="a-center"><?php echo $this->__('Subtotal') ?></th>
        </tr>
    </thead>

将突然显示说明列,价格列将消失。奇怪,但是,这真的很奇怪。有些东西让第二列不显示,我不知道它是什么。

我希望这里的一些Magento专家可以启发我如何显示第二列的review / info.phtml。

更新:与此同时,我这样做了:

<th><?php echo $this->__('Item') ?></th>  
 <th></th>
        <th class="a-center"><?php echo $this->__('Price') ?></th>
        <th class="a-center"><?php echo $this->__('Description') ?></th>           
        <th class="a-center"><?php echo $this->__('Qty') ?></th>
        <th class="a-center"><?php echo $this->__('Subtotal') ?></th>

注意项目后面的空白。这不会出现在HTML输出中,因为它位于第二列(我不知道为什么它没有显示)。现在一切都很好。第一,第三,第四,第五和第六列。哈哈哈......很奇怪...... O__O

1 个答案:

答案 0 :(得分:0)

没关系,我已经在第一次之后又被另一个人解决了。我仍然不知道它没有出现,但至少它现在已经解决了。 O_O

与此同时,我这样做了:

<th><?php echo $this->__('Item') ?></th>  
 <th></th>
        <th class="a-center"><?php echo $this->__('Price') ?></th>
        <th class="a-center"><?php echo $this->__('Description') ?></th>           
        <th class="a-center"><?php echo $this->__('Qty') ?></th>
        <th class="a-center"><?php echo $this->__('Subtotal') ?></th>

注意项目后面的空白。这不会出现在HTML输出中,因为它位于第二列(我不知道为什么它没有显示)。现在一切都很好。第一,第三,第四,第五和第六列。哈哈哈......很奇怪...... O__O