Insert localized property for product name directly in the database

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
6 years ago
I have tho languages on my web shop and I'm using the standard option for product Name. Now I want to add english name for the product but I want to do that from the database. I'm using this queries below. The record is inserted into a tables but is not showing in the admin of nop. Can someone help me and tell me what I'm doing wrong?


INSERT INTO LocalizedProperty (EntityId, LanguageId, LocaleKeyGroup, LocaleKey, LocaleValue) VALUES (13890, 1, 'Product', 'Name', 'test product');

INSERT INTO UrlRecord (EntityId, EntityName, Slug, IsActive, LanguageId) VALUES (13890, 'Product', 'test-product', 1, 1);


Thanks
6 years ago
This is working great, the problem was the cash. After I clear the cash from the Admin everything worked fine.

Thanks
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.