希望我的标题正确无误。
我从Themeforest购买了一个主题 - http://www.newsmartwave.net/vigoshop/index.php/?___store=demo2_default
基本上,您拥有Home,Account,Shopping&在顶部链接结帐。我已使用Local.XML删除了Top链接中除帐户链接以外的所有内容。在顶部链接下方,您可以“登录或注册”链接。当您使用此链接登录时,链接将更改为“注销”,以便客户可以注销。但我想要做的是将顶部链接中的帐户链接替换为“登录或注册”,以便我可以删除下面的选项。例如,请参阅此屏幕抓取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>
答案 0 :(得分:0)
尝试搜索class="sign-link pull-left"
从源代码中找到后,您就可以将其删除。