我已经设置了新的1.9.3 magento。我在默认/默认文件夹中有一个css文件。它不存在于custom_package / custom_theme和custom_package / default_theme中。它直接进入base / default。它应该检查默认/默认。有没有办法实现适当的后备。
答案 0 :(得分:0)
您需要为每个主题设置etc/theme.xml
,如下所示:
在custom_package/custom_theme/etc/theme.xml
文件中设置为:
<?xml version="1.0"?>
<theme>
<parent>custom_package/default_theme</parent>
</theme>
在custom_package/default_theme/etc/theme.xml
文件中设置为:
<?xml version="1.0"?>
<theme>
<parent>default/default</parent>
</theme>
在default/default/etc/theme.xml
文件中设置为:
<?xml version="1.0"?>
<theme>
<parent>base/default</parent>
</theme>
答案 1 :(得分:0)
default / default是pre 1.4 magento中的残余,仅用于旧版模块的向后兼容性,它将回退到基本默认值并忽略默认默认值,除非您另有明确说明。简而言之,base / default是新的默认/默认值