magento后备不起作用

时间:2017-03-24 10:26:03

标签: magento magento-1.9

我已经设置了新的1.9.3 magento。我在默认/默认文件夹中有一个css文件。它不存在于custom_package / custom_theme和custom_package / default_theme中。它直接进入base / default。它应该检查默认/默认。有没有办法实现适当的后备。

2 个答案:

答案 0 :(得分:0)

您需要为每个主题设置etc/theme.xml,如下所示:

  1. custom_package/custom_theme/etc/theme.xml文件中设置为:

    <?xml version="1.0"?>
    <theme>
      <parent>custom_package/default_theme</parent>
    </theme>
    
  2. custom_package/default_theme/etc/theme.xml文件中设置为:

    <?xml version="1.0"?>
    <theme>
       <parent>default/default</parent>
    </theme>
    
  3. 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是新的默认/默认值

https://magento.stackexchange.com/questions/30592/why-is-there-a-base-default-layout-and-a-default-default-layout