Search code examples
kentico

E-Commerce Product Custom Field Kentico 10


I am using E-commerce module of Kentico portal and it has two fields for Products pricing : SKUPrice and SKURetailPrice.

I needed one more field to show sell price and I added a new field in Modules application of the portal.(Modules->E-Commerce->Classes->SKU->Fields->New Field)

Now, I need to access this field in my code,but SKUInfo class doesn't show me the newly added field.What I need to do so that the newly added field reflects in my project code ?

I have already build the entire solution multiple times.Any other solutions please.


Solution

  • You can use GetValue and SetValue methods for such fields like this:

    SKUInfo sku = ...;
    string a = sku.GetValue("field").ToString();
    sku.SetValue("field", "value");