PDA

View Full Version : Aeolus help


Rambo4104
07 Apr 07, 18:28
I'm installing a MOD on Aeolus, where I need to edit something at the bottom of the postrow, where normally it would be this

<tr>
<td class="spaceRow" colspan="2" height="1"><img src="templates/subSilver/images/spacer.gif" alt="" width="1" height="1" /></td>
</tr>
<!-- END postrow -->

But in Aeolus, it's this

</table>{TPL_FTR}
<!-- END postrow -->

Where can I edit {TPL_FTR}?

CyberAlien
07 Apr 07, 18:36
You don't. What exactly do you need to add/replace there?

Rambo4104
07 Apr 07, 18:48
Replace the spacer part with

#-----[ FIND ]------------------------------------------
#
<tr>
<td class="spaceRow" colspan="2" height="1"><img src="templates/subSilver/images/spacer.gif" alt="" width="1" height="1" /></td>
</tr>
<!-- END postrow -->

#
#-----[ REPLACE, WITH ]------------------------------------------
#
<!-- BEGIN switch_spacer -->
<tr>
<td class="spaceRow" colspan="2" height="1"><img src="templates/subSilver/images/spacer.gif" alt="" width="1" height="1" /></td>
</tr>
<!-- END switch_spacer -->
<!-- BEGIN move_message -->
<tr>
<td class="row3" colspan="2"><span class="postdetails">{postrow.move_message.MOVE_MESSAGE}</span></td>
</tr>
<!-- END move_message -->
<!-- END postrow -->

#

CyberAlien
07 Apr 07, 19:00
Before that </table> in viewtopic_body.tpl add this:<!-- BEGIN move_message -->
<tr>
<td class="row1" colspan="2"><span class="postdetails">{postrow.move_message.MOVE_MESSAGE}</span></td>
</tr>
<!-- END move_message -->

Rambo4104
07 Apr 07, 20:27
Thanks .