I'm creating a seperate module to add products to uCommerce. I have got this working mostly but I can't seem to be able to add a DisplayName. From the documentation I found the DisplayName is added through a description which I add in the following way:
var description = new ProductDescription { Product = product, CultureCode = "en-GB", // or en-GB, da-DK etc. DisplayName = txtName.Text, ShortDescription = txtShortDescription.Text, LongDescription = txtLongDescription.Text }; description.Save();
And a value actually goes in there, it gets saved but in the umbraco back-end the displayname is not displayed:
(The display names that are filled in are hand made)
Setting a product DisplayName
Hi,
I'm creating a seperate module to add products to uCommerce. I have got this working mostly but I can't seem to be able to add a DisplayName. From the documentation I found the DisplayName is added through a description which I add in the following way:
And a value actually goes in there, it gets saved but in the umbraco back-end the displayname is not displayed:
(The display names that are filled in are hand made)
Any ideas?
Thank you,
Thomas
I just noticed there isn't a way to change the Display Name in the back-end. Is there really no way to do this?
is working on a reply...