NOTE: this is a mod for MY forum, not a request for anything on wtf.com.
I'm trying to edit the "originally posted by" text from the quote box. I'm running version 3.0.3.
Below is the code that's in the bbcode_quote template. I originally thought i could just edit the [originally_posted_by_x] line, but that didn't work.
When i changed that string to anything else it just reverts to a normal quote box with no name.([ quote] [ /quote])
Any idea's on what I'd need to edit to accomplish this? The exact quote text isn't important, I'm just using that as an example.
I'm trying to edit the "originally posted by" text from the quote box. I'm running version 3.0.3.
To something like below.junglizm said:quoted text
This is a pic of it in action, albeit this is on vb 2.x.junglizm came out of the closet to say:
quoted text

Below is the code that's in the bbcode_quote template. I originally thought i could just edit the [originally_posted_by_x] line, but that didn't work.
When i changed that string to anything else it just reverts to a normal quote box with no name.([ quote] [ /quote])
Any idea's on what I'd need to edit to accomplish this? The exact quote text isn't important, I'm just using that as an example.
PHP:
<div style="margin:20px; margin-top:5px; <if condition="$show['iewidthfix']">width: 100%;</if>">
<div class="smallfont" style="margin-bottom:2px">$vbphrase[quote]:</div>
<table cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<if condition="$show['username']">
<div><phrase 1="$username">$vbphrase[originally_posted_by_x]</phrase></div>
<div style="font-style:italic">$message</div>
<else />
$message
</if>
</td>
</tr>
</table>
</div>