aliharis2004 Posted January 24, 2004 Share Posted January 24, 2004 How can I remove the image from the shopping cart .. I dont want to see the image of the product on the shopping cart page .... Link to comment Share on other sites More sharing options...
ozcsys Posted January 24, 2004 Share Posted January 24, 2004 How can I remove the image from the shopping cart .. I dont want to see the image of the product on the shopping cart page .... Not 100% sure but I would start with this line at about line #118 in your shopping_cart.php file ' <td class="productListing-data" align="center"><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $products[$i]['id']) . '">' . tep_image(DIR_WS_IMAGES . $products[$i]['image'], $products[$i]['name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT) . '</a></td>' . taking out the references to the image so it looks like this ' <td class="productListing-data" align="center"><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $products[$i]['id']) . '">' . '</a></td>' . I have not been at this very long myself so make sure you back up your file first and you might need to tweek the change some but I am pretty sure that is the correct line. Richard The Knowledge Base is a wonderful thing. Do you have a problem? Have you checked out Common Problems? There are many very useful osC Contributions Are you having trouble with a installed contribution? Have you checked out the support thread found Here BACKUP BACKUP BACKUP!!! You did backup, right?? Link to comment Share on other sites More sharing options...
aliharis2004 Posted January 25, 2004 Author Share Posted January 25, 2004 That was perfect ... thanks Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.