Tôi đang sử dụng Magento 2 CE Phiên bản 2.1.0 trên WAMP Windows 10
Tôi đã giới thiệu
Magento 2: Làm cách nào để ghi đè tệp html mẫu mặc định của giỏ hàng nhỏ?
Muốn ghi đè chủ đề Luma mặc định của Magento 2
Tôi có cấu trúc thư mục dưới đây
magento2
|_ app
|_ design
|_ frontend
|_ Custom
|_Theme
|_Magento_Theme
|_templates
|_root.phtml - Copy of Luma
registration.php
theme.xml
ứng dụng \ design \ frontend \ Custom \ Theme \ Magento_Theme \ register.php
\Magento\Framework\Component\ComponentRegistrar::register(
\Magento\Framework\Component\ComponentRegistrar::THEME,
'frontend/Custom/Theme',
__DIR__
);
ứng dụng \ 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>
Tôi chạy php bin/magento setup:static-content:deploy
và xóa bộ nhớ cache là tốt. Nó không hiển thị Theme mới được tạo của tôi trong Admin -> Content -> Design -> Configuration
. Chỉnh sửa danh sách thả xuống.
Tôi vẫn còn thiếu điều gì?