我正在为 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; ?>