마 젠토 2 안정 버전에서 테마를 만드는 방법?
베타 용 자습서는 있지만 안정적이지 않습니다.
내가 취한 단계는 다음과 같습니다.
theme.xml & composer.json 에서 app / design / frontend / Themevendorname / Themename / 내에 폴더 를 작성 했습니다.
하지만 stores->configuration->General->Design
그 디자인 테마 드롭 다운에서 관리자 로 갔을 때 새 테마가 표시되지 않습니다.
다음은 composer.json의 라인입니다.
{
"name": "themevendorname/theme-frontend-themename",
"description": "N/A",
"require": {
"php": "~5.4.11|~5.5.0",
"magento/framework": "0.1.0-alpha107",
"magento/magento-composer-installer": "*"
},
"type": "magento2-theme",
"version": "0.1.0-alpha107",
"extra": {
"map": [
[
"*",
"frontend/themevendorname/themename"
]
]
}
}
첨부 된 이미지를 확인하십시오. 또 다른 것은 공급 업체-> magento 폴더 안에 theme-frontend-themename이라는 폴더를 만들고 여기에 동일한 폴더를 넣었지만 여전히 관리자 저장소-> 구성-> 일반-> 디자인 테마에서 해당 테마를 얻지 못한다는 것입니다 쓰러지 다.
도와주세요.