MyBB Community Forums

Full Version: Remove Dropmenu for Userdetail in Post
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hi .
i want to remove dropmenu for user profile in post.
i want to see post detail below username as in screenshot.
my postbit_classic code is as below:
{$ignore_bit}
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder_4" style="{$post_extra_style} {$post_visibility}" id="post_{$post['pid']}">
<tr><td class="tcat" colspan="2" style="border-bottom: 1px solid #A57D28;">
<span class="smalltext" style="float: left;">
<div id="post_meta_{$post['pid']}">
<div id="edited_by_{$post['pid']}">{$post['editedmsg']}{$post['iplogged']}</div>
</div>
</span>

{$post['posturl']}</td></tr>
	<tr>
		<td class="{$altbg} left_postbit" width="15%" valign="top" style="white-space: nowrap; text-align: center;"><a name="pid{$post['pid']}" id="pid{$post['pid']}"></a>
<br />
		<span class="smalltext">
			{$post['useravatar']}<br />

<span id="popup_postbit{$post['pid']}" padding-top: 4px;">
<a href="#"><strong><span class="largetext">{$post['profilelink']}</span></strong><span class="smalltext">&#x25BC;</span></a>{$post['onlinestatus']}</span>
<div id="popup_postbit{$post['pid']}_popup" class="" style="display: none;">
<div class="popup_postbit_class" align="left">
<table border="0" width="100%">
{$post['user_details']}
</table>
</div>
</div>
<script type="text/javascript">
if(use_xmlhttprequest == "1"){
new PopupMenu("popup_postbit{$post['pid']}");
}
</script>

		</span>
	</td>
	<td class="{$altbg}" valign="top">
		<table width="100%">
			<tr>
<td>
			<div id="pid_{$post['pid']}" class="post_body">
				{$post['message']}
			</div>
			{$post['attachments']}
		</td>
</tr>
	</table>
</td>
</tr>
<tr>
	<td class="{$altbg} left_postbit" style="white-space: nowrap; text-align: center; vertical-align: middle; color: #FFFFFF;"><span class="smalltext">{$post['postdate']} {$post['posttime']}</span></td>
	<td class="{$altbg}" style="vertical-align: middle;">
		<table width="100%" border="0" cellpadding="0" cellspacing="0">
			<tr valign="bottom">
				<td align="left" valign="top">
{$post['button_email']}{$post['button_pm']}{$post['button_www']}{$post['button_find']}{$post['button_rep']}
</td>

<td align="right" valign="top">
{$post['button_edit']}{$post['button_quickdelete']}{$post['button_quote']}{$post['button_report']}{$post['button_warn']}{$post['button_reply_pm']}{$post['button_replyall_pm']}{$post['button_forward_pm']}{$post['button_delete_pm']}
</td>
			</tr>
		</table>
	</td>
</tr>
</table>

Bumped..pls help guys.

Help guys.
any one help me pls.
To remove the dropdown arrow you need to remove the following piece of code from your postbit template:

<span class="smalltext">&#x25BC;</span>

If that's not what you mean, please post your forum URL and a testing account. Smile
Not working.
Have i to remove from postbit only or postbit-classic???