|
I have a problem too with the toplinks wich was not working anymore.
I have searched and noticed that the content of the $_toplink array used in the app\design\frontend\default\default\template\page\html\top.links.phtml have changed with the new version. But the top.links.phtml has not changed. To fix this problem you have to modify the line 25 :
<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>
to
<li<?php if($_toplink['first']||$_toplink['last']): ?>class="<?php if($_toplink['first']): ?>first <?php endif; ?><?php if($_toplink['last']): ?>last <?php endif; ?>"<?php endif; ?> > <a href="<?php echo $_toplink['aParams'] ?>"> <?php echo $_toplink['innerText'] ?></a></li>
It’s better to make this modification by creating a new phtml file in a new theme directory.
Hope this helps.
|