2015-10-23 187 views
0

我已經使用這個簡單的教程http://www.implementek.com/adding-new-page-layout-for-magento-cms-pages/自定義佈局Magento的

這一直很好sucesfully添加在Magento自定義的頁面佈局,我可以在Magento的後臺看到了新的佈局。我的問題是如何添加另一個?我似乎無法得到magento識別其他新頁面...我怎樣才能參考XML文件中的更多頁面?

<cms> 
<layouts> 
<redirect> 
<label>Woman Product Page</label> 
<template>page/1column-woman.phtml</template> 
</redirect> 
</layouts> 
</cms> 

回答

0

只需添加另一個?例如:

<cms> 
    <layouts> 
     <redirect> 
      <label>Woman Product Page</label> 
      <template>page/1column-woman.phtml</template> 
     </redirect> 
     <another> 
      <label>Man Product Page</label> 
      <template>page/1column-man.phtml</template> 
     </another> 
    </layouts> 
</cms> 
+0

是的,謝謝!歡呼聲 – Gazm

+0

歡迎您,請接受答案。 – Roy