如何在 Shopware 6 中创建自定义字段并在前端显示?

How to create custom field in Shopware 6 and show it on frontend?

如何在 Shopware 6 中创建自定义字段并使用 Twig 在 frontend/storefront 上显示它文件?

转到“设置”>“系统”>“自定义字段”->“添加新集”。或者将字段添加到现有的自定义字段集中。

将此添加到 Twig 模板:

{{context.salesChannel.customFields.your_custom_field | trans}}

将 SalesChannel 更改为自定义字段关联的类型。

your_custom_field更改为自定义字段中指定的“技术名称”。添加“trans”以获取本地翻译。

你可以看看官方docs.