-
- Sousa

-
Total Posts: 347
Joined: 2007-09-02
Porto, Portugal
|
Verifica que o arquivo top.links.phtml tem esta informação:
<?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; ?>
|