我目前正在研究Magento项目,我必须在其中添加自定义系统配置来管理主机。
我遵循了我在使用Magento 2.2版的旧项目中使用的旧配置。
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Config:etc/system_file.xsd">
<system>
<section id="catalog" translate="label" type="text" sortOrder="1" showInDefault="1" showInWebsite="1" showInStore="1">
<group id="config" translate="label" type="text" sortOrder="90" showInDefault="1" showInWebsite="1" showInStore="1">
<label>Setup</label>
<field id="host" translate="label" type="text" sortOrder="67" showInDefault="1" showInWebsite="1" showInStore="1">
<label>Host</label>
</field>
</group>
</section>
</system>
</config>
但是从Magento 2.3开始,此解决方案不再起作用。
我是否必须手动启用配置才能在管理配置面板中看到它?