문제

We have a lot of attribute sets in our store 100+. And by default the general group name inside a attribute set is called "Product Details" we want to change/translate this text.

We already tried this by adding it into the i18n file, but that does not seem to work.

So now I am looking for a script to change the group name of the "Product Details" into a new phrase.

How can I achieve this?

도움이 되었습니까?

해결책

Using mysql directly, you can use the query below:

update eav_attribute_group set attribute_group_name='My new name' where attribute_group_code='product-details';

once you will have run the query, My new name will be the group name instead of Product Details.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 magento.stackexchange
scroll top