Group: Forum Members
Last Active: Wed 22 Jul 2020
Posts: 153,
Visits: 874
|
Maybe is not a bug but I notice you that when a new language is created from backend, records related to language 1 in table tblKartrisLanguageElements are cloned to language 2 (or to new language ID) but field LE_Value of new language records results NULL. This cause that when new language is adopted in front/backend, dropdownlists of countries or even dropdownlist of shipment ways (i.e) results empty!
Having that my K's installation is still empty, I solved deleting new language records in tblKartrisLanguageElements then duplicating the ones of default language to new records with this query: INSERT INTO [KartrisSQL].[dbo].[tblKartrisLanguageElements] SELECT 2 as LID ,[LE_TypeID] ,[LE_FieldID] ,[LE_ParentID] ,[LE_Value] FROM [KartrisSQL].[dbo].[tblKartrisLanguageElements] WHERE LE_LanguageID=1
Countries are not translated but dropdownlists work.
|