Page 1 of 1

Remove Image icon from Shopping Cart

Posted: Mon Sep 20, 2010 5:03 am
by lostjeepsgear
Hi all....
I have looked all around trying to find out a way to remove the thumbnail that shows up when you are looking at the shopping cart.
Due to the way I'm preparing my products, I'd prefer if there was no image there.
hopefully someone can chime in

Thanks

Re: Remove Image icon from Shopping Cart

Posted: Mon Sep 20, 2010 8:40 pm
by billyggla
/catalog/view/theme/default/template/checkout

cart.tpl

at around line 23 remove

Code: Select all

<th align="center"><?php echo $column_image; ?></th>
and around line 37 replace this

Code: Select all

<td align="center"><a href="<?php echo str_replace('&', '&', $product['href']); ?>"><img src="<?php echo $product['thumb']; ?>"> alt="<?php echo $product['name']; ?>" /></a></td>
with this

Code: Select all

<td align="center"><a href="<?php echo str_replace('&', '&', $product['href']); ?>" alt="<?php echo $product['name']; ?>" /></a></td>
any problems let me know..