I have had a defined product content type and some culture specific properties.
I want to set default value for some certain properties once a new product is created or translated. I added the setting default value by overriding SetDefaultValues like this
public override void SetDefaultValues(ContentType contentType)
{
base.SetDefaultValues(contentType);
//Insert code here
}
But it seems the default value is only set to master the language. I saw that the default settings like this still works well if the content type is from CMS, not Commerce.
Do you have experience like that? Please help me if you have any idea to fix this problem.
Hi Guys,
I am working on Episerver Commerce version 13.25.
I have had a defined product content type and some culture specific properties.
I want to set default value for some certain properties once a new product is created or translated. I added the setting default value by overriding SetDefaultValues like this
But it seems the default value is only set to master the language. I saw that the default settings like this still works well if the content type is from CMS, not Commerce.
Do you have experience like that? Please help me if you have any idea to fix this problem.
Thanks