Hello everyone,
We have a page in the project that contains 2 properties:
[Display(
GroupName = Global.GroupNames.Header,
Order = 101)]
public override string SiteTitle { get; set; }
[Display(
GroupName = Global.GroupNames.Header,
Order = 102)]
public override string SiteSubTitle { get; set; }
Which are overriden from
[Ignore]
public virtual string SiteTitle { get; set; }
[Ignore]
public virtual string SiteSubTitle { get; set; }
The problem is that at Admin - Content types these properties are marked as "Missing".
Here are the changes that were made with code since it had been working, may be it would be helpful:
- EPiServer upgrade from 7.1 to 7.5
- EPiServer upgrade from 7.5 to 8.11
- the captions of the properties were moved to the resource file (the only change made for these two properties)
There were no another changes - no properties deleting or renaming. And I don't exactly know at what step we lost that two.
My question is if there is any "easy" way to return these properties back? To create new and set up them again is not a good solution in our case. CMS stores "the lost" values, but I cannot get it from code, how to "map them back"?
Many thanks,
Marharyta