Sto usando Magento 2 CE versione 2.1.0 su WAMP Windows 10
Ho già fatto riferimento
Magento 2: Come sovrascrivere il file html del modello predefinito mini-cart?
Vorrebbe sovrascrivere il tema Luma predefinito di Magento 2
Ho sotto la struttura delle cartelle
magento2
|_ app
|_ design
|_ frontend
|_ Custom
|_Theme
|_Magento_Theme
|_templates
|_root.phtml - Copy of Luma
registration.php
theme.xml
app \ progettazione \ frontend \ Custom \ Tema \ Magento_Theme \ registration.php
\Magento\Framework\Component\ComponentRegistrar::register(
\Magento\Framework\Component\ComponentRegistrar::THEME,
'frontend/Custom/Theme',
__DIR__
);
app \ progettazione \ frontend \ Custom \ Tema \ 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>
Corro php bin/magento setup:static-content:deploy
e svuoto anche la cache. Non mostra il mio tema appena creato in Admin -> Content -> Design -> Configuration
. Modifica elenco a discesa.
Cosa mi manca ancora?