I have fixed the problem on the Viewing Profile page and below are the edits I have done to subsilver...
*These were done to AeroBlack style which is based on subsilver and could help those with subsilver edits as a reference...
Open: styles/AeroBlack/imageset/en/imageset.cfg
Look for: img_icon_contact_www = icon_contact_www.png
Add after: img_icon_contact_twit = icon_contact_twit.png
*Note that I used a png image instead of the gif image that came with the mod
If using the gif image: img_icon_contact_twit = icon_contact_twit.gif
Open: styles/AeroBlack/template/memberlist_view.html
Look for:
<tr>
<td class="gen" nowrap="nowrap" align="{S_CONTENT_FLOW_END}">{L_JABBER}:</td>
<td><!-- IF U_JABBER --><a href="{U_JABBER}" onclick="popup(this.href, 550, 320); return false">{JABBER_IMG}</a><!-- ELSEIF USER_JABBER -->{USER_JABBER_IMG}<!-- ENDIF --></td>
</tr>
Add after:
<tr>
<td class="gen" nowrap="nowrap" align="{S_CONTENT_FLOW_END}">{L_TWITTER}:</td>
<td><!-- IF USER_TWITTER --><a href="
http://www.twitter.com/{USER_TWITTER}">{TWITTER_IMG}</a><!-- ELSEIF U_TWITTER -->{USER_TWITTER}<!-- ENDIF --></td>
</tr>
Open: styles/AeroBlack/template/memberlist_search.html
Look for:
<td class="row1"><input class="post" type="text" name="msn" value="{MSNM}" /></td>
</tr>
Add after:
<tr>
<td class="row1"><b class="genmed">{L_TWITTER}:</b></td>
<td class="row1"><input class="post" type="text" name="twitter" value="{TWITTER}" /></td>
</tr>
Open: styles/AeroBlack/template/ucp_profile_profile_info.html
Look for:
<tr>
<td class="row1" width="35%"><b class="genmed">{L_WEBSITE}: </b></td>
<td class="row1"><input class="post" type="text" name="website" size="30" maxlength="255" value="{WEBSITE}" /></td>
</tr>
Add after:
<tr>
<td class="row1" width="35%"><b class="genmed">{L_TWITTER}: </b></td>
<td class="row1"><input class="post" type="text" name="twitter" size="30" maxlength="255" value="{TWITTER}" /></td>
</tr>
Open: styles/AeroBlack/template/viewtopic_body.html
Look for:
<td colspan="2"><div class="gensmall" style="float: {S_CONTENT_FLOW_BEGIN};"> <!-- IF postrow.U_POST_AUTHOR --><a href="{postrow.U_POST_AUTHOR}">{PROFILE_IMG}</a> <!-- ENDIF --> <!-- IF postrow.U_PM --><a href="{postrow.U_PM}">{PM_IMG}</a> <!-- ENDIF --> <!-- IF postrow.U_EMAIL --><a href="{postrow.U_EMAIL}">{EMAIL_IMG}</a> <!-- ENDIF -->
In line after: <!-- IF postrow.U_EMAIL --><a href="{postrow.U_EMAIL}">{EMAIL_IMG}</a> <!-- ENDIF -->
Add: <!-- IF postrow.U_TWITTER --><a href="
http://www.twitter.com/{postrow.U_TWITT ... ER_IMG}</a> <!-- ENDIF -->
Purge cache, Refresh template in styles tab in acp as usual