Magento儿童主题创作问题

时间:2015-02-08 10:56:03

标签: magento themes fallback

我在localhost上全新安装了Magento ver 1.9.1.0。我密切关注this tutorial以创建Magento响应主题的儿童主题。

我已经清楚地遵循了所有步骤。我使用这种方法创建了Magento目录结构

[Magento Directory]/app/design/frontend/{package_name}/{theme_name}/etc

并在那里创建了theme.xml文件。可以看出 enter image description here

theme.xml文件的确切位置是:

[Magento Directory]/app/design/frontend/tutsplus/vstyle/etc

因为我的包裹名称是&t; tutsplus'主题名称是' vstyle'。我还从管理面板中正确启用了此主题。如下面的屏幕截图所示:

enter image description here

theme.xml文件的代码是:

<?xml version="1.0"?>
<theme>
    <parent>rwd/default</parent>
</theme>

有人可以指出我错过了什么吗?

4 个答案:

答案 0 :(得分:2)

同样的问题。但在这里,我已在<!-- -->中添加了评论theme.xml。我不得不剥离它们。

您的文件可能无法阅读或损坏。

答案 1 :(得分:2)

这里的问题完全相同,但这是我解决它的方法。

除了在System&gt;中添加包名称和模板名称外配置&gt;设计,你需要去系统&gt;在那里设计并添加新主题。

system > design

add package

答案 2 :(得分:1)

如果您还没有看过,请查看http://www.magentocommerce.com/knowledge-base/entry/ee114-ce19-rwd-dev-guide

该指南提供了开始使用所需的其他信息。

答案 3 :(得分:1)

此外,如果theme.xml文件的格式如下:

<theme>
    <parent>
        packagename/actualtheme
    </parent>
</theme>

它无效。它需要格式化:

<theme>
    <parent>packagename/actualtheme</parent>
</theme>

不确定原因;也许有更高级知识的人可以评论。