我想將我的客戶帳戶頁面設置爲1列頁面佈局,然後將customer_account_navigation從左側移至內容頂部。任何想法/方法如何輕鬆做到這一點?多謝你們!1列頁面佈局Magento客戶帳戶導航
1
A
回答
6
TO,你需要編輯你的主題和 的customer.xml
佈局文件,並在標籤內<customer_account>
移動這個移動導航菜單部分。
<block type="customer/account_navigation" name="customer_account_navigation" before="-" template="customer/account/navigation.phtml">
<action method="addLink" translate="label" module="customer"><name>account</name><path>customer/account/</path><label>Account Dashboard</label></action>
<action method="addLink" translate="label" module="customer"><name>account_edit</name><path>customer/account/edit/</path><label>Account Information</label></action>
<action method="addLink" translate="label" module="customer"><name>address_book</name><path>customer/address/</path><label>Address Book</label></action>
</block>
卸下如果從標籤<reference name="left">
裏面<reference name="content">
。
而且爲了從2columns-left
模板更改爲1column
,更改相同的標籤<customer_account>
裏面,這樣的:
<reference name="root">
<action method="setTemplate"><template>page/2columns-left.phtml</template></action>
</reference>
這樣:
<reference name="root">
<action method="setTemplate"><template>page/1column.phtml</template></action>
</reference>
你可能需要做一些CSS改變之後,使導航菜單適合您的主題。
1
打開app\design\frontend\YOUR_THEME_TEMPLATE\default\layout\customer.xml
文件。
在這種customer_account
chnage
<action method="setTemplate"><template>page/2columns-left.phtml</template></action>
到
<action method="setTemplate"><template>page/1column.phtml</template></action>
有關頂部看到的帳戶鏈接: -
Magento - How to add/remove links on my account navigation?
相關問題
- 1. Magento2客戶帳戶導航更改3列頁面佈局
- 2. Magento客戶帳戶/儀表板頁面
- 3. 將塊左移內容(賬戶導航)Magento(1列布局)
- 4. 客戶帳戶儀表板的Magento SIngle列布局
- 5. Magento將客戶的帳戶佈局設置爲一列
- 6. 在Magento客戶帳戶導航上使用jQuery Block UI。鏈接
- 7. Magento客戶帳戶頁面超時,如何調試?
- 8. Magento 1.8我的帳戶佈局在鉻
- 9. Magento我的帳戶佈局XML問題
- 10. 顯示頁面頁腳在客戶帳戶對帳單
- 11. Magento - 在客戶的帳戶儀表板上編輯邊欄導航
- 12. Magento:重寫客戶帳戶控制器
- 13. Magento 1列布局困境
- 14. 將Magento管理帳戶與客戶帳戶關聯
- 15. Magento添加額外的字段/客戶/帳戶/創建/頁
- 16. Magento客戶組在CMS頁面
- 17. Magento - 禁用客戶儀表板頁面
- 18. Magento創建新的客戶頁面
- 19. Magento打印頁面佈局
- 20. 導航抽屜中的用戶帳戶
- 21. 發佈到Facebook頁面和Twitter帳戶
- 22. 帳戶佈局頁面上的自定義字段
- 23. 將新頁面添加到Magento用戶帳戶
- 24. 客戶導入與Magento的
- 25. 將40,000客戶導入Magento
- 26. 將opencart客戶導入magento
- 27. Magento佈局和分層導航
- 28. Magento客戶無法登錄和結帳
- 29. 在magento中動態添加「我的帳戶導航」鏈接
- 30. Magento - 如何添加/刪除我的帳戶導航鏈接?
感謝這個夥伴。像魅力一樣工作!我只是想知道如何讓我的local.xml而不是更改customer.xml? – user3364265