![]() |
| |||||||
| IPB General Support Post your questions here, no bug reports. |
![]() |
| | LinkBack | Thread Tools | Display Modes |
| | #1 (permalink) |
| Junior Forumer ![]() | could someone give me the original code for ACP>MANAGE HTML>TOPIC VIEW SECTION(skin topic php)>Post Entry (function RenderRow) Thanks. |
![]() | |
| |
| | #2 (permalink) |
| Active Forumer ![]() | Code: <!--Begin Msg Number {$post['pid']}-->
<table width='100%' border='0' cellspacing='1' cellpadding='3'>
<tr>
<td valign='middle' class='row4' width="1%"><a name='entry{$post['pid']}'></a><span class='{$post['name_css']}'>{$author['name']}</span></td>
<td class='row4' valign='top' width="99%">
<!-- POSTED DATE DIV -->
<div align='left' class='row4' style='float:left;padding-top:4px;padding-bottom:4px'>
{$post['post_icon']}<span class='postdetails'><b><a title="{ibf.lang.tt_link}" href="#" onclick="link_to_post({$post['pid']}); return false;" style="text-decoration:underline">{ibf.lang.posted_on}</a></b> {$post['post_date']}</span>
</div>
<!-- REPORT / DELETE / EDIT / QUOTE DIV -->
<div align='right'>
{$post['report_link']}{$post['delete_button']}{$post['edit_button']}<a href='{ibf.script_url}act=Post&CODE=06&f={$ibforums->input[f]}&t={$ibforums->input[t]}&p={$post['pid']}'><{P_QUOTE}></a>
</div>
</td>
</tr>
<tr>
<td valign='top' class='{$post['post_css']}'>
<span class='postdetails'>{$author['avatar']}<br /><br />
{$author['title']}<br />
{$author['member_rank_img']}<br /><br />
{$author['member_group']}<br />
{$author['member_posts']}<br />
{$author['member_number']}<br />
{$author['member_joined']}<br /><br />
{$author['warn_text']} {$author['warn_minus']}{$author['warn_img']}{$author['warn_add']}</span><br />
<!--$ author[field_1]-->
<img src='{ibf.vars.img_url}/spacer.gif' alt='' width='160' height='1' /><br />
</td>
<td width='100%' valign='top' class='{$post['post_css']}'>
<!-- THE POST {$post['pid']} -->
<div class='postcolor'>{$post['post']} {$post['attachment']}</div>
{$post['signature']}
<!-- THE POST -->
</td>
</tr>
<tr>
<td class='darkrow3' align='left'><b>{$post['ip_address']}</b></td>
<td class='darkrow3' nowrap="nowrap" align='left'>
<!-- PM / EMAIL / WWW / MSGR -->
<div align='left' class='darkrow3' style='float:left;width:auto'>
{$author['addresscard']}{$author['message_icon']}{$author['email_icon']}{$author['website_icon']}{$author['integ_icon']}{$author['icq_icon']}{$author['aol_icon']}{$author['yahoo_icon']}{$author['msn_icon']}
</div>
<!-- REPORT / UP -->
<div align='right'>
<a href='javascript:scroll(0,0);'><img src='{ibf.vars.img_url}/p_up.gif' alt='Top' border='0' /></a>
</div>
</td>
</tr>
</table>
<div class='darkrow1' style='height:5px'><!-- --></div>
![]() |
| |
| | #3 (permalink) |
| Banned User ![]() | yes! Code: <!--Begin Msg Number {$post['pid']}-->
<table width='100%' border='0' cellspacing='1' cellpadding='3'>
<tr>
<td valign='middle' class='row4' width="1%"><a name='entry{$post['pid']}'></a><span class='{$post['name_css']}'>{$author['name']}</span></td>
<td class='row4' valign='top' width="99%">
<!-- POSTED DATE DIV -->
<div align='left' class='row4' style='float:left;padding-top:4px;padding-bottom:4px'>
{$post['post_icon']}<span class='postdetails'><b><a title="{ibf.lang.tt_link}" href="#" onclick="link_to_post({$post['pid']}); return false;" style="text-decoration:underline">{ibf.lang.posted_on}</a></b> {$post['post_date']}</span>
</div>
<!-- REPORT / DELETE / EDIT / QUOTE DIV -->
<div align='right'>
{$post['report_link']}{$post['delete_button']}{$post['edit_button']}<a href='{ibf.script_url}act=Post&CODE=06&f={$ibforums->input[f]}&t={$ibforums->input[t]}&p={$post['pid']}'><{P_QUOTE}></a>
</div>
</td>
</tr>
<tr>
<td valign='top' class='{$post['post_css']}'>
<span class='postdetails'>{$author['avatar']}<br /><br />
{$author['title']}<br />
{$author['member_rank_img']}<br /><br />
{$author['member_group']}<br />
{$author['member_posts']}<br />
{$author['member_number']}<br />
{$author['member_joined']}<br /><br />
{$author['warn_text']} {$author['warn_minus']}{$author['warn_img']}{$author['warn_add']}</span><br />
<!--$ author[field_1]-->
<img src='{ibf.vars.img_url}/spacer.gif' alt='' width='160' height='1' /><br />
</td>
<td width='100%' valign='top' class='{$post['post_css']}'>
<!-- THE POST {$post['pid']} -->
<div class='postcolor'>{$post['post']} {$post['attachment']}</div>
{$post['signature']}
<!-- THE POST -->
</td>
</tr>
<tr>
<td class='darkrow3' align='left'><b>{$post['ip_address']}</b></td>
<td class='darkrow3' nowrap="nowrap" align='left'>
<!-- PM / EMAIL / WWW / MSGR -->
<div align='left' class='darkrow3' style='float:left;width:auto'>
{$author['addresscard']}{$author['message_icon']}{$author['email_icon']}{$author['website_icon']}{$author['integ_icon']}{$author['icq_icon']}{$author['aol_icon']}{$author['yahoo_icon']}{$author['msn_icon']}
</div>
<!-- REPORT / UP -->
<div align='right'>
<a href='javascript:scroll(0,0);'><img src='{ibf.vars.img_url}/p_up.gif' alt='Top' border='0' /></a>
</div>
</td>
</tr>
</table>
<div class='darkrow1' style='height:5px'><!-- --></div>
|
| |
| | #6 (permalink) |
| VIP Team | Support Resolved! If you have any further questions, feel free to create a new thread. Thanks for choosing Forumer! ![]() This is an automated message. |
![]() Please do not PM me for support. | |
| |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Affilates Code needed | monky91 | IPB General Support | 4 | 11-15-2006 11:22 AM |
| server 5 original code please | Inny | IPB General Support | 3 | 12-30-2005 07:45 AM |
| original banner code? | bart5986 | IPB General Support | 3 | 03-20-2005 11:40 PM |
| Original Skin Code Please | zach1687 | IPB Skinning Help | 1 | 07-20-2004 09:52 PM |
| [resolved]*I Need The Original Code | TheHybrid | IPB General Support | 5 | 05-31-2004 10:10 AM |