Я создаю магазин в magento 2.3.3. Я создал собственный заголовок, но он не отображается во внешнем интерфейсе. Я сделал следующие шаги для создания пользовательского заголовка; 1: Создан файл с именем customheader.p html в папке magento_theme внутри папки моей темы, т.е. myvendor / mytheme / Magento_Theme / html / customheader.phtml 2: я добавил следующий код в свой файл dafault. xml file
<referenceContainer name="header.container">
<block class="Magento\Framework\View\Element\Template" name="custom_header" as="custom_header"
template="Magento_Theme::html/customheader.phtml" />
</referenceContainer>
<move element="minicart" destination="custom_header"/>
<move element="currency" destination="custom_header"/>
<move element="logo" destination="custom_header"/>
<move element="skip_to_content" destination="custom_header"/>
<move element="header.links" destination="custom_header"/>
<move element="my-account-link" destination="custom_header" />
<move element="navigation.sections" destination="custom_header"/>
<move element="top.search" destination="custom_header" after="navigation.sections"/>
<move element="top.links" destination="custom_header" />
<move element="store_language" destination="custom_header" />
<move element="store_switcher" destination="custom_header" />
После добавления приведенного выше кода я выполнил следующие команды:
php bin/magento setup:upgrade && php bin/magento setup:static-content:deploy -f && php bin/magento cache:flush
Я искал в Интернете, но безуспешно. Пожалуйста помоги! заранее спасибо