Hello Rachel,
there are basically two approaches, how to achieve something like this. One approach would be to modify the checkout process directly. This can be done in the file
CMSModules\Ecommerce\Controls\ShoppingCart\ShoppingCartContent.ascx.cs. There is the
ReloadData method which assignes the ContentTable of the shopping cart to the dataset of the gridData gridview:
gridData.DataSource = ShoppingCartInfoObj.ContentTable;
The second approach would be to modify the following method:
protected override ShoppingCartInfo GetShoppingCartInfoInternal(int userId, string siteName)
This can be done with the new customization model from 6.0:
1. [url=devnet.kentico.com/Blogs/Petr-Vozak/October-2011/E-commerce-6-New-customization-model.aspx ]devnet.kentico.com/Blogs/Petr-Vozak/October-2011/E-commerce-6-New-customization-model.aspx [/url]
2.
devnet.kentico.com/Blogs/Martin-Hejtmanek/October-2011/Code-customization-in-Kentico-CMS-6.aspxBest Regards,
Martin Danko