1
Magento 2:システム構成の選択メールテンプレートが機能しない
Sytemem-> Configurationの下にあるメールテンプレートで選択フィールドをレンダリングしようとしています。構成タブを開くと、構成フィールドがさらに表示されます。 これが私のファイルです etc / system.xml <field id="pickup_template" translate="label comment" type="select" sortOrder="3" showInDefault="1" showInWebsite="1" showInStore="1"> <label>New Order Confirmation Template for Guest</label> <comment>Email template chosen based on theme fallback when "Default" option is selected.</comment> <source_model>Magento\Config\Model\Config\Source\Email\Template</source_model> </field> etc / email_templates.xml <template id="pickup_template" label="New Order" file="yourfile.html" type="html" module="Hello_StorePickup" area="frontend"/> view / frontend / …