How to activate new adminhtml theme in Magento?

I developed a new module for Magento, it works well. I developed a new adminhtml theme, however I did not find where to activate it from. I went through all the backend and found only [design changes] that change the theme of the store.

Is there any way to tell Magento to use my theme?

+4
source share
1 answer

Inside config.xml in a folder , etc. add the following to your module

<stores> <admin> <design> <package> <name>NameSpace</name> </package> <theme> <default>theme</default> </theme> </design> </admin> </stores> 

Assuming you created your theme under app / design / adminhtml / NameSpace / theme

0
source

Source: https://habr.com/ru/post/1416362/


All Articles