How to remove the “Move to Wishlist, Edit, Move” column from the shopping cart in magento?

How to remove the “Move to Wishlist, Edit, Move” column from the shopping cart in magento?

app/design/frontend/<package>/<theme>/checkout/cart/item/default.phml if you don’t get this in your theme please find out from base.Copy defualt.phtml
paste into your theme “item” folder. Please comments out below code to remove “Edit option”, May be line number 70.

<td>
<?php if ($isVisibleProduct): ?>
<a href=”<?php echo $this->getConfigureUrl() ?>” title=”<?php echo $this->__(‘Edit item parameters’) ?>”><?php echo $this->__(‘Edit’) ?></a>
<?php endif ?>
</td>

Please comments out below code to remove “Move option”, May be line number 77.

    <td>
<?php if ($isVisibleProduct): ?>
<a href=”<?php echo $this->helper(‘wishlist’)->getMoveFromCartUrl($_item->getId()); ?>”><?php echo $this->__(‘Move’); ?></a>
<?php endif ?>
</td>

app/desgin/frontend/<package>/<theme>/checkout/cart.phtml ,Please comments out below code to remove “Move to Wishlist”, May be line number 79.

 <?php if ($this->helper(‘wishlist’)->isAllowInCart()) : ?>
<th rowspan=”<?php echo $mergedCells; ?>”><span><?php echo $this->__(‘Move to Wishlist’) ?></span></th>
<?php endif ?>

Hope it will work.