Hi all!
I try inheritance my theme from admin theme (not base theme), but this theme not have theme.xml
If I put in this theme theme.xml with next code:
<?xml version="1.0"?>
<theme>
<parent>default/default</parent>
</theme>
All work fine.. But I don't want change or add any files to this theme.
My theme.xml:
<?xml version="1.0"?>
<theme>
<parent>default/admintheme</parent>
<layout>
<updates>
<admintheme_default>
<file>default.xml</file>
</admintheme_default>
</updates>
</layout>
</theme>
You know any solutions? Thank!