Я использую Magento 2 CE версии 2.1.0 на WAMP Windows 10
Я уже сослалась
Magento 2: Как переопределить HTML-файл шаблона мини-корзины по умолчанию?
Хотите переопределить Magento 2 Default Luma Theme
У меня ниже структура папок
magento2
|_ app
|_ design
|_ frontend
|_ Custom
|_Theme
|_Magento_Theme
|_templates
|_root.phtml - Copy of Luma
registration.php
theme.xml
App \ дизайн \ внешний интерфейс \ Custom \ Theme \ Magento_Theme \ registration.php
\Magento\Framework\Component\ComponentRegistrar::register(
\Magento\Framework\Component\ComponentRegistrar::THEME,
'frontend/Custom/Theme',
__DIR__
);
App \ дизайн \ внешний интерфейс \ Custom \ Theme \ Magento_Theme \ theme.xml
<theme xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Config/etc/theme.xsd">
<title>My Theme</title>
<parent>Magento/luma</parent>
</theme>
Я также запускаю php bin/magento setup:static-content:deploy
и очищаю кеш. Это не отображает мою недавно созданную тему в Admin -> Content -> Design -> Configuration
. Изменить выпадающий список.
Что мне еще не хватает?