Hey ghettowboy - I'm really sorry but I posted the wrong info for the 'memberlist_view.html' edits

- I posted that you were to add before the online_img conditional when in fact you should have found the old rank title info and replaced it with these new edits. The mod configuration (in ACP) allows you to have either just a custom title or a custom title and rank title (and/or image) so those file edits do replace the original rank title code and uses the conditionals to display what you have set in ACP.
Check that file again and make sure it looks something like this - and remember to take into account any other mods that may have required edits to this file. I've included code in the file from both before and after the custom title/rank title edit so you can see how the end result should look:
Code: Select all
<!-- IF S_USER_INACTIVE -->
<tr>
<td align="center" class="error"><b class="gen">{L_USER_IS_INACTIVE}</b><br />{L_INACTIVE_REASON}: {USER_INACTIVE_REASON}<br /><br /></td>
</tr>
<!-- ENDIF -->
<tr>
<td align="center"><!-- IF USER_COLOR --><b class="gen" style="color: {USER_COLOR}"><!-- ELSE --><b class="gen"><!-- ENDIF -->{USERNAME}</b><!-- IF U_USER_ADMIN --><span class="genmed"><br />[ <a href="{U_USER_ADMIN}">{L_USER_ADMIN}</a> ]</span><!-- ENDIF --></td>
</tr>
<!-- IF CUSTOM_TITLE or RANK_TITLE or RANK_IMG -->
<tr>
<td align="center"><strong>{CUSTOM_TITLE}</strong></td>
</tr>
<!-- IF CUSTOM_TITLE and RANK_TITLE or CUSTOM_TITLE and RANK_IMG --><br />
<!-- ENDIF -->
<tr>
<td align="center">{RANK_TITLE}</td>
</tr><!-- IF RANK_TITLE and RANK_IMG --><br />
<!-- ENDIF -->
<tr>
<td align="center">{RANK_IMG}</td>
</tr>
<!-- ENDIF -->
<!-- IF AVATAR_IMG -->
<tr>
<td align="center">{AVATAR_IMG}</td>
</tr>
<!-- ENDIF -->
<!-- IF ONLINE_IMG -->
<tr>
<td align="center">{ONLINE_IMG}</td>
</tr>
<!-- ENDIF -->
As for the viewtopic_body.html, it looks like either the code was put in twice or you have the same custom title as rank title as Gremlinn said.