I am trying to edit the Checkout Review template in a custom theme but I am experiencing issues when trying to re-order the table columns.
I have done the following
- edited the custom theme - app/design/frontend//default/template/checkout/onepage/review/info.phtml
- edited the base theme (as a test) - app/design/frontend/base/default/template/checkout/onepage/review/info.phtml
- disabled all of the Cache Management
- enabled template hints but the page doesn't render
I have altered the table class in the custom theme as follows which does show
<table class="data-table test" id="checkout-review-table">
I have re-ordered the columns in the custom theme as follows but the changes don't show
<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>
Can anyone point me in the right direction?