0

メインのナビゲーション メニューを変更しようとしています。

ゲスト用のメニューに「ログイン」というリンク(カテゴリ)があります。しかし、顧客がログインした後、名前を「ログイン」から「ショップ」に変更したいと考えています。

あちこち探しました。local.xml ファイルを変更することでこれが可能になることを願っていますが、どのソリューションでも可能です。

4

3 に答える 3

0

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>

デフォルトからコンテンツを削除します。私が上にしたように

于 2013-08-30T13:14:43.013 に答える
0

私がいつも使っているものを追加しました:

<?php $session=Mage::getSingleton('customer/session', array('name'=>'frontend') ); ?>
<?php if ($session->isLoggedIn()) { ?>
<?php } else { ?>
<?php } ?>
于 2013-08-28T06:23:41.393 に答える