在标题导航移动登录或注册链接到首页链接 - Magento的(Moving Log in or R

2019-10-22 19:26发布

希望我的标题是正确的。

我已经买了Themeforest一个主题- http://www.newsmartwave.net/vigoshop/index.php/?___store=demo2_default

基本上,在上面你有家庭,帐户,购物结账的顶部链接。 我已经删除了所有除使用local.xml中的顶部链接帐户链接。 下面顶部的链接,你有“登录或注册”链接。 当您使用此链接登录,链接更改为注销因此客户可以注销。 但我想做的是替换的顶部链接的帐户链接到“登录或注册”这样的话我可以删除下面的选项。 例如看到这个屏幕抓取http://i.imgur.com/RXlO36e.png 。

我不知道我能做到这一点,请有人可以帮助我吗?

提前致谢。

<?php else:?>
    <a href="<?php echo $this->getUrl('',  array('_secure' =>  Mage::app()->getFrontController()->getRequest()->isSecure())) ?>" title="<?php echo $this->getLogoAlt() ?>" class="logo"><strong><?php echo $this->getLogoAlt() ?></strong><img src="<?php echo $this->getLogoSrc() ?>" alt="<?php echo $this->getLogoAlt() ?>" /></a>
    <?php endif?>
    <?php
        $loggedIn = $this->helper("customer")->isLoggedIn();
        if($loggedIn == 1){
    ?>
        <a href="<?php echo $this->getUrl('customer/account/logout/',  array('_secure' =>  Mage::app()->getFrontController()->getRequest()->isSecure())); ?>" class="sign-link pull-left"><?php echo $this->__('Logout') ?></a>
    <?php
        }else {
    ?>
        <a href="<?php echo $this->getUrl('customer/account/',  array('_secure' =>  Mage::app()->getFrontController()->getRequest()->isSecure())); ?>" class="sign-link pull-left"><?php echo $this->__('Log In or Register'); ?></a>
    <?php
        }
    ?>
    <?php echo $this->getChildHtml('topContainer'); ?>    



**Local.xml**
<action method="removeLinkByUrl"><url helper="customer/getAccountUrl"/></action>
        <action method="addLink" translate="label title" module="customer"><label>Log in or Register</label><url helper="customer/getAccountUrl"/><title>My Account</title><prepare/><urlParams/><position>10</position><liParams/><aParams>class="top-link-account"</aParams></action>

Answer 1:

尝试搜索了买主题文件class="sign-link pull-left"

一旦你已经从源代码中发现它,那么你可以将其删除。



文章来源: Moving Log in or Register Link to Top Links in Header Navigation - Magento
标签: php css magento