Как создать новую тему в Magento 2

я создал эти каталоги.
-приложение
-дизайн
-внешний интерфейс
-vendor
-theme
-theme.xml
-Средства массовой информации
-preview.jpg

тема загружается в список дизайна Bacend, но когда я активирую ее, то ничего не показывает на веб-интерфейсе

2

Решение

Я предпочитаю смотреть на эти ответы.

app/design/frontend/Magento/mytheme/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> <!-- your theme's name -->
<parent>Magento/blank</parent> <!-- the parent theme, in case your theme inherits from an existing theme -->
<media>
<preview_image>media/preview.jpg</preview_image> <!-- the path to your theme's preview image -->
</media>
</theme>

app/design/frontend/Magento/mytheme/composer.json

{
"name": "magento/theme-frontend-blank",
"description": "N/A",
"require": {
"php": "~5.5.0|~5.6.0|~7.0.0",
"magento/theme-frontend-blank": "100.0.*",
"magento/framework": "100.0.*"},
"type": "magento2-theme",
"version": "100.0.1",
"license": [
"OSL-3.0",
"AFL-3.0"],
"autoload": {
"files": [
"registration.php"]
}
}

app/design/frontend/Magento/mytheme/registration.php

<?php
/**
* Copyright © 2015 Magento. All rights reserved.
* See COPYING.txt for license details.
*/
\Magento\Framework\Component\ComponentRegistrar::register(
\Magento\Framework\Component\ComponentRegistrar::THEME,
'frontend/Magento/mytheme',
__DIR__
);

https://magento.stackexchange.com/questions/94541/theme-is-not-showing-in-admin-panel-list-magento2/94546#94546

1

Другие решения

Других решений пока нет …

По вопросам рекламы [email protected]