-
- vgorilla

-
Total Posts: 6
Joined: 2011-05-05
|
Want to add price in grid of items already in google shopping. So far, have added price to header by adding:
/public_html/app/code/core/Mage/GoogleShopping/Block/Adminhtml/Items/Item.php
$this->addColumn('price', array( 'header' => $this->__('Price'), 'type' => 'currency', 'width' => '100px', 'index' => 'price', ));
What else do I need to do to have the items’ prices show below the grid header?
|