Magento Table Head Colums In Product Review Block Checkout
Has anyone here encountered this strange problem in the reivew/info.phtml template of Magento's checkout page. I have 5 table head titles in the source code namely items, descripti
Solution 1:
Nevermind, I already resolved it by another another th after the first th. I still don't know what it's not appearing, but at least it was resolved for now. O_O
For the meantime, I did this:
<th><?phpecho$this->__('Item') ?></th><th></th><thclass="a-center"><?phpecho$this->__('Price') ?></th><thclass="a-center"><?phpecho$this->__('Description') ?></th><thclass="a-center"><?phpecho$this->__('Qty') ?></th><thclass="a-center"><?phpecho$this->__('Subtotal') ?></th>
Notice an empty th after the item. That will not show up in the HTML output because it's on the second column (that I don't know why it's not showing up). Everything is now displaying fine. The first, 3rd, 4th, 5th and 6th columns. Hahaha.. Weird... O__O
Post a Comment for "Magento Table Head Colums In Product Review Block Checkout"