2 yabba Jul 16, 2007 09:34

within the same code, you should be able to edit the T_ command to read what you want. not sure if this has other implications however.
PHP:
if(!isset($linkblog_main_start)) $linkblog_main_start = '<div class="bSideItem"><h3>'.
T_('Linkblog').'</h3>';
new code
PHP:
if(!isset($linkblog_main_start)) $linkblog_main_start = '<div class="bSideItem"><h3>'.
T_('new name').'</h3>';
I believe the only drawback to editing the text directly is that it won't translate when it is supposed to because the language files won't know what to make of the new term. But yeah that's how I always tweak 'stock' words. I also frequently get rid of the translation mechanism, meaning T_('foo') becomes 'foo'.
Yabba,
I tried your suggestion above, and received an error saying "longname" not defined.
Any suggestions?
Thanks,
Ack, that'll teach me to post without checking :P
try "name" instead ;)
¥
Yabba,
Thank you! That fixed the problem.
Cheers,
Rocketdude
Crack open your skins _linkblog.php and find a bit that looks like this :
And change it to look like this :
¥