修改Magento的默认帐户信息中心

时间:2010-09-08 05:20:36

标签: magento

我尝试编辑

下的phtml文件(dashboard.phtml)

模板>客户>帐户

但帐户信息中心保持不变。我错过了什么?

感谢

2 个答案:

答案 0 :(得分:1)

你在编辑哪个主题?默认情况下安装了许多,显示的那个在System> Config> Design中设置。如果您正在编辑app/design/frontend/base/default/template,请确保您在设计中没有任何条目。

另外,请确保在进行开发时在系统>缓存管理中禁用缓存,但在生产中将其打开!

JD

答案 1 :(得分:0)

您应该转到 app / design / frontend / base / default / template ,然后查找您不希望在个人帐户信息中心中显示的xml文件。例如:要从信息中心删除“我的可下载产品”,您应该编辑 downloadable.xml ,并查找此代码:

<reference name="customer_account_navigation">
      <action method="addLink" translate="label" module="downloadable"><name>downloadable_products</name><path>downloadable/customer/products</path><label>My Downloadable Products</label></action>
    </reference>

然后,做

<!--<action method="addLink" translate="label" module="downloadable"><name>downloadable_products</name><path>downloadable/customer/products</path><label>My Downloadable Products</label></action>-->

这样您就可以从信息中心删除“我的可下载产品”链接。

希望它有所帮助