Magento购物车标题显示错误


Magento Shopping cart heading displaying wrongly

我是万磁王的新手,我在magento购物车页面中遇到了问题,其中显示的产品及其标题的详细信息是错误的。请给我一个解决方案。

请参阅标题,它与产品详细信息无关,即其洗牌

检查此链接 : http://thorsignia.net/khidmaa/index.php/checkout/cart

简单的答案是...

转到 checkout/cart.phtml

然后在<thead>标签下复制您的第一个副本'<th rowspan="1">Remove</th>',并将其添加到最后一个'<th class="a-center" colspan="1">Subtotal</th>'之后,您的问题是手套。

您可以通过以下方式更新购物车布局

app/design/frontend/YOUR_PACKAGE/YOUR_THEME/template/checkout/cart.phtml 

只需更改您的主题checkout/cart.phtml

 <th rowspan="<?php echo $mergedCells; ?>">&nbsp;</th>  
 <th rowspan="<?php echo $mergedCells; ?>"><span class="nobr"><?php echo $this->__('Product Name') ?></span></th>
 <th rowspan="<?php echo $mergedCells; ?>">&nbsp;</th>
 <th class="a-center cart-price-head" colspan="<?php echo $mergedCells; ?>">
    <span class="nobr"><?php echo $this->__('Price') ?></span>
 </th>
 <th rowspan="<?php echo $mergedCells; ?>" class="a-center">
     <?php echo $this->__('Qty') ?>
 </th>
 <th class="a-center cart-total-head" colspan="<?php echo $mergedCells; ?>">
   <?php echo $this->__('Subtotal') ?>
 </th>
 <th class="a-center" rowspan="<?php echo $mergedCells; ?>">&nbsp;</th>