3

I am trying to remove quantity column from order review step on checkout/onepage page but it removing only heading not data.

Any Suggestions?

Manashvi Birla
  • 8,833
  • 9
  • 27
  • 53
Donika
  • 547
  • 8
  • 19

2 Answers2

4

Please follow below steps:

Step : 1

Remove quantity column from the file

\template\checkout\onepage\review\info.phtml

Step : 2

Remove data from the file

\template\checkout\onepage\review\item.phtml


<td class="a-center"><?php echo $_item->getQty() ?></td>
Manashvi Birla
  • 8,833
  • 9
  • 27
  • 53
Abdul
  • 9,701
  • 1
  • 20
  • 43
1

You will need to remove it from

app/design/frontend/your_package/your_theme/template/checkout/onepage/review/item.phtml

remove below code from file

<td class="a-center"><?php echo $_item->getQty() ?></td>

If this file is called from base you will need to put it in your theme.

Akhilesh Patel
  • 4,522
  • 2
  • 18
  • 30