我在愿望清单页面的变更页面标题中面对magento的问候。但我无法更改页面标题。所以,请任何人都可以帮我设置这个愿望清单页面标题。
答案 0 :(得分:4)
Magento在布局中设置了大多数页面标题。愿望清单可以在wishlist.xml
找到。
<wishlist_index_index translate="label">
...
<reference name="my.account.wrapper">
<block type="wishlist/customer_wishlist" name="customer.wishlist" template="wishlist/view.phtml">
<action method="setTitle" translate="title">
<title>My Wishlist</title>
</action>
</reference>
...
</wishlist_index_index>
因此,要更改此设置,请将此部分包含在本地布局更新文件中。
<?xml version="1.0"?>
<layout version="0.1.0">
<wishlist_index_index translate="label">
<reference name="customer.wishlist">
<action method="setTitle" translate="title">
<title>New title here</title>
</action>
</reference>
</wishlist_index_index>
</layout>
答案 1 :(得分:-2)
另一种方法:在文件中的其他代码之前,将以下代码添加到 app / design / frontend / packagename / themename / template / wishlist / view.phtml 。
<script>
document.title = 'Your Page Title'; // for head title
</script>
<?php $this->setTitle('Your Page Title'); // for page title ?>