Driving me nuts.
I'm replacing the top mini cart in our Magento store to just be a small shopping cart icon with a space for the number of items in cart.
Default Magento displays the word 'Cart' on the link.
I have been searching far and wide through templates, layouts, code, etc for the place where I can remove the word 'Cart'. I'm at a loss.
The code calling that chunk is located in theme/template/page/template/links.phtml:
<li<?php if($_link->getIsFirst()||$_link->getIsLast()): ?> class="<?php if($_link->getIsFirst()): ?>first<?php endif; ?><?php if($_link->getIsLast()): ?> last<?php endif; ?>"<?php endif; ?> <?php echo $_link->getLiParams() ?>><?php echo $_link->getBeforeText() ?><a href="<?php echo $_link->getUrl() ?>" title="<?php echo $_link->getTitle() ?>" <?php echo $_link->getAParams() ?>><?php echo $_link->getLabel() ?></a><?php echo $_link->getAfterText() ?></li>
Specifically: echo $_link->getLabel()
Frustration mounts. Free high fives to anyone who (unlike myself) has a clue. >:|