kentico_edwardh
-
10/28/2011 8:02:08 PM
RE:Product Information on Shopping cart page
Hello Gitesh,
You can adjust the ~\CMSModules\Ecommerce\Controls\ShoppingCart\ShoppingCartContent.ascx control (and its code-behind). It's possible to create method here, to retrieve the image tag to the template (similar to GetSKUName method, but just with one SKUID parameter). You can obtain the SKUImagePath property using code below:
CMS.Ecommerce.SKUInfo skui = CMS.Ecommerce.SKUInfoProvider.GetSKUInfo((int)skuID);
// skui.SKUImagePath is now available
Please note, the code above is just brief example, you will need to amend it to suit your needs.
Best Regards, Edward Hillard
|