03-27-2010, 03:22 AM
Hi.
in postbit/postbit_classic
replace:
with:
Now the user profile is poped Up.
Resource (The Original Author): Andii S.
in postbit/postbit_classic
replace:
Code:[Highlight]
<strong><span class="largetext">{$post['profilelink']}</span></strong>
with:
Code:[Highlight]
<strong><span class="largetext"><a href="#" id="profilelink_{$post['pid']}">{$post['username_formatted']}</span></strong></a>
<div id="profilelink_{$post['pid']}_popup" class="popup_menu" style="display: none;">
<div class="popup_item_container">
<a href="{$mybb->settings['bburl']}/member.php?action=profile&uid={$post['uid']}" class="popup_item">view Profile</a>
</div>
<div class="popup_item_container">
<a href="{$mybb->settings['bburl']}/search.php?action=finduser&uid={$post['uid']}" class="popup_item">find Users Posts</a>
</div>
<div class="popup_item_container">
<a href="{$mybb->settings['bburl']}/search.php?action=finduserthreads&uid={$post['uid']}" class="popup_item">find Users Threads</a>
</div>
Now the user profile is poped Up.
Resource (The Original Author): Andii S.