Quote:
Originally Posted by Kadi
Thanks SiMateoAko for the quick reply.
I have another question.
My forum is right to left so the brackets are messed up with members who use English names. Could you tell me how to remove them?
|
I'm assuming this is an example of what you're talking about?
http://www.ms-saudi.com/forum/forumdisplay.php?f=22
I have no idea how I so easily found that being as I cannot read Arabic (I assume it's arabic). I guess I'm just used to vbulletin.
Anyway, that'll be an easy fix.
in your
insert thread date into template plugin, change the code to look like this:
Code:
if (THIS_SCRIPT == ('search' || 'forumdisplay')) {
$vbulletin->templatecache['threadbit'] = str_replace(
'$thread[postusername]</span>',
'<span class=\"time\">($thread[threaddate])</span> $thread[postusername]</span>',
$vbulletin->templatecache['threadbit']
);
}
of course, change your SPAN tags as needed as mentioned above.