Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Magento で新しいモジュールを開発しましたが、うまく機能します。新しい adminhtml テーマを設計しましたが、それをアクティブにする場所がわかりません。すべてのバックエンドを閲覧したところ、ストアのテーマを変更する [デザインの変更] のみが見つかりました..
私のテーマを使用するように Magento に指示する方法はありますか?
モジュールのetcフォルダーの下にあるconfig.xml内に、以下を追加します。
<stores> <admin> <design> <package> <name>NameSpace</name> </package> <theme> <default>theme</default> </theme> </design> </admin> </stores>
app/design/adminhtml/NameSpace/ theme の下にテーマを作成したとします。