【发布时间】:2014-07-29 12:25:25
【问题描述】:
我正在为 Magento 使用样板模板,并且该模板中已经包含了很棒的字体。我通过在 Links.php 中添加 class="btn btn-primary" 为我的汽车在顶部链接中创建了一个引导按钮,现在我在尝试从字体真棒添加购物车图标时遇到问题......
我想在“我的购物车(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; ?>
【问题讨论】:
标签: magento icons html5boilerplate font-awesome-4