Wagent Windows 10でMagento 2 CEバージョン2.1.0を使用しています
私はすでに言及しました
Magento 2:ミニカートのデフォルトのテンプレートHTMLファイルをオーバーライドする方法
Magento 2のデフォルトのLumaテーマを上書きします
以下のフォルダ構造があります
magento2
|_ app
|_ design
|_ frontend
|_ Custom
|_Theme
|_Magento_Theme
|_templates
|_root.phtml - Copy of Luma
registration.php
theme.xml
app \ design \ frontend \ Custom \ Theme \ Magento_Theme \ registration.php
\Magento\Framework\Component\ComponentRegistrar::register(
\Magento\Framework\Component\ComponentRegistrar::THEME,
'frontend/Custom/Theme',
__DIR__
);
app \ design \ frontend \ 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
。ドロップダウンリストを編集します。
まだ何が足りないのですか?