In my sitecore website, there is a tricky requirement in redirects. There are external redirects which are moving from sharepoint to sitecore item to some external redirect. For ex : /abc.aspx (sharepoint_URL) to /abc (sitecore item) to http://abc.ly (external URL).
In /abc (sitecore item) we have only english version of item whereas http://abc.ly can have many language version. If website is cookied in english than its working properly, in other languages its showing 404 error page which is genuine because of version count is 0 over there.
Requirement is if there is not other language version of item than it should point to 'en' version i.e global. Restriction is that versioning of item in sitecore is not acceptable to marketers, and i dont want to use fallback module right now. What i tried is :
Language currentLang = Sitecore.Context.Language;
Language LangEn= Language.Parse("en");
if(currentLang !=LangEn)
{ currentLang =LangEn;
}
Item versionItem = Sitecore.Context.Database.GetItem(Context.Item.ID, currentLang);
if (versionItem.Versions.Count == 0){ // do something }`
Kindly suggest ASAP
I think you may want to look into language fallback. There is a module on the marketplace to help you do this.
That being said, given the field is shared it will take far less time to just log into Sitecore and create a version in each language.
If this is going to be happening often, you could create a command template which will run code to create the item in all languages. That might save your authors some time.