我正在尝试覆盖我的自定义模块中的magentoe\app\design\frontend\rwd\mytheme\template\instockonly\catalog\layer\view.phtml
文件说instockonly -
模块config.xml文件 -
<?xml version="1.0"?>
<config>
<modules>
<Namespace_InStockOnly>
<version>1.0</version>
</Namespace_InStockOnly>
</modules>
<frontend>
<routers>
<instockonly>
<use>standard</use>
<args>
<module>Namespace_InStockOnly</module>
<frontName>instockonly</frontName>
</args>
</instockonly>
</routers>
<layout>
<updates>
<instockonly>
<file>instockonly.xml</file>
</instockonly>
</updates>
</layout>
</frontend>
</config>
这是模块xml文件
//path magentoe\app\design\frontend\rwd\enterprise\layout\instockonly.xml
<?xml version="1.0"?>
<layout version="0.1.0">
<catalog_category_layered translate="label">
<reference name="catalog.leftnav">
<action method="setTemplate">
<template>instockonly/catalog/layer/view.phtml</template>
</action>
</block>
</reference>
</catalog_category_layered>
</layout>
和phtml文件的路径是 -
magentoe\app\design\frontend\rwd\enterprise\template\instockonly\catalog\layer\view.phtml
我做错了,因为我已经尝试了很多,但我仍然无法覆盖phtml文件。 请尽快建议。