1

我正在为 Magento 使用样板模板,并且该模板中已经包含了很棒的字体。我通过在 Links.php 中添加一个 class="btn btn-primary" 在顶部链接中为我的汽车创建了一个引导按钮,现在我在尝试从 font awesome 添加购物车图标时遇到了一个问题......

我想在“我的购物车(2 件)”顶部链接前添加此代码:我的购物车

我尝试了一些没有成功的事情......

谢谢你的帮助

编辑:这就是我的 top.links.phtml 的样子,我不知道如何添加您的代码:

<?php if($toplinks && is_array($toplinks)): ?>
<ul class="links">
<?php echo $this->getChildHtml() ?>
<?php foreach($toplinks as $_toplink): ?>
<li<?php if($_toplink['first']||$_toplink['last']): ?> class="<?php if($_toplink['first']): ?>first<?php endif; ?><?php if($_toplink['last']): ?> last<?php endif; ?>"<?php endif; ?> <?php echo $_toplink['liParams'] ?>><?php echo $_toplink['beforeText'] ?><a <?php echo $_toplink['aParams'] ?>><?php echo $_toplink['innerText'] ?></a><?php echo $_toplink['afterText'] ?></li>
<?php endforeach; ?>
</ul>
<?php endif; ?>
4

2 回答 2

3

最佳做法是使用 xml 进行自定义修改。但在这种情况下,您需要添加链接。尝试编辑top.links.phtml ..你可以使用这个来调用类

 <action method="addLink" translate="label title" module="customer">
 <label>Logout</label>
<url helper="customer/getLogoutUrl"/>
<title>Log Out</title>
<prepare/>
<urlParams/>
<position>2</position>
<liParams></liParams>
<aParams>class="logout-link"</aParams>
<beforeText><![CDATA[<span>]]></beforeText>
<afterText><![CDATA[</span>]]></afterText>
 </action> 
于 2014-06-09T01:13:23.573 回答
2

关注此链接:

http://www.ibeccreative.com/blog/151/Magento-Tutorial-How-to-Customize-the-Top-Links-Block/

对于一些链接作为愿望清单:

应用程序/设计/前端/[[YOURTHEME]]/default/layout/wishlist.xml

改变:

   <reference name="top.links">
            <block type="wishlist/links" name="wishlist_link" />
            <action method="addLinkBlock"><blockName>wishlist_link</blockName></action>
        </reference>

至:

<reference name="top.links">
        <block type="wishlist/links" name="wishlist_link">
            <action method="setBeforeText">
                <beforeText><![CDATA[<i class="fa fa-gift"></i>]]>    </beforeText>
            </action>
        </block>
        <action method="addLinkBlock">
            <blockName>wishlist_link</blockName>
        </action>
    </reference>
于 2015-06-11T15:17:30.137 回答