1 papzadsl Jan 09, 2006 23:04
3 papzadsl Jan 11, 2006 12:06
Thank you man, short and full working :D
In order to get this answer comprehensible to the most, I write what I did with that line:
Search for this piece of code in _feedback.php (into your skin dir)
case 'comment': // Display a comment:
echo T_('Comment from:') ?>
<strong><?php $Comment->author_url('', '<a href="', '">', false); $Comment->author('', '</a>', ' ', '</a>'); ?></strong>
(or something like that: this one is from "PLAIN" skin, but should be very close to all different skins we have);
replace the piece
$Comment->author_url('', '<a href="', '">', false); $Comment->author('', '</a>', ' ', '</a>');
with
<?php $Comment->author('Comment by ','','Comment by ','','htmlbody',true); ?>
And you will get author's name linked to website he filled in.
Obviously, thanks to Yabba, my mentor. I've just extended the explanation ;)
Francesco
$Comment->author('Comment by ','','Comment by ','','htmlbody',true);
;)
¥