Que parte tendria que eliminar del codigo?
gracias
Código: Seleccionar todo
#
#-----[ OPEN ]------------------------------------------
#
includes/page_header.php
#
#-----[ FIND ]------------------------------------------
#
define('HEADER_INC', TRUE);
#
#-----[ AFTER, ADD ]------------------------------------------
#
// begin phpBB2 Image Shack Integration
$image_shack = '<iframe src="http://www.imageshack.us/iframe.php?txtcolor=111111&type=blank&size=30" scrolling="no" allowtransparency="true" frameborder="0" width="280" height="85"></iframe>';
// end phpBB2 Image Shack Integration
#
#-----[ FIND ]------------------------------------------
#
'PRIVMSG_IMG' => $icon_pm,
#
#-----[ BEFORE, ADD ]------------------------------------------
#
// begin phpBB2 Image Shack Integration
'IMAGE_SHACK' => $image_shack,
// end phpBB2 Image Shack Integration
#
#-----[ OPEN ]------------------------------------------
#
templates/subSilver/index_body.tpl
#
#-----[ FIND ]------------------------------------------
#
<br clear="all" />
#
#-----[ BEFORE, ADD ]------------------------------------------
#
<!-- BEGIN switch_user_logged_in -->
<div align="center">{IMAGE_SHACK}</div>
<!-- END switch_user_logged_in -->
#
#-----[ OPEN ]------------------------------------------
#
templates/subSilver/posting_body.tpl
#
#-----[ FIND ]------------------------------------------
#
<td class="row2"><span class="gen"> </span>
#
#-----[ REPLACE WITH ]----------------------------------------
#
<td class="row2">
<!-- BEGIN switch_user_logged_in -->
{IMAGE_SHACK}
<!-- END switch_user_logged_in -->
<span class="gen"> </span>
#
#-----[ OPEN ]------------------------------------------
#
templates/subSilver/profile_view_body.tpl
#
#-----[ FIND ]------------------------------------------
#
<td> <b><span class="gen">{INTERESTS}</span></b></td>
</tr>
#
#-----[ AFTER, ADD ]------------------------------------------
#
<!