Check web\store\productsummary.ascx.cs for the available tokens. I don't think there is a token for SKU. But you can easily extend to have SKU token.
1) Create web\store\ProductSummary\SKU.ascx
2) Add the following code to productsummary.ascx.cs
case "SKU":
c = LoadAndBindControl("/Store/ProductSummary/SKU.ascx");
break;
DotShoppingCart Staff
|