メインのナビゲーション メニューを変更しようとしています。
ゲスト用のメニューに「ログイン」というリンク(カテゴリ)があります。しかし、顧客がログインした後、名前を「ログイン」から「ショップ」に変更したいと考えています。
あちこち探しました。local.xml ファイルを変更することでこれが可能になることを願っていますが、どのソリューションでも可能です。
customer.xml で
<default>
<reference name="top.links">
</reference>
</default>
<customer_logged_in>
<reference name="top.links">
<action method="addLink" translate="label title" module="customer"><label>My Account</label><url helper="customer/getAccountUrl"/><title>My Account</title><prepare/><urlParams/><position>10</position></action>
<action method="addLink" translate="label title" module="customer"><label>Shop</label><url helper="customer/getLogoutUrl"/><title>Shop</title><prepare/><urlParams/><position>100</position></action>
</reference>
</customer_logged_in>
デフォルトからコンテンツを削除します。私が上にしたように
私がいつも使っているものを追加しました:
<?php $session=Mage::getSingleton('customer/session', array('name'=>'frontend') ); ?>
<?php if ($session->isLoggedIn()) { ?>
<?php } else { ?>
<?php } ?>