MyBB Community Forums

Full Version: Account summary hover on profile link
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I have an idea for a plugin or perhaps extension to a plugin like Last poster avatar - http://community.mybb.com/thread-189492.html

the idea is to display some profile information on hover on the profile link. To get an idea of what the output could look like, do the following to test:

1) Link to W3 responsive framework with <link rel="stylesheet" href="http://www.w3schools.com/lib/w3.css">

2) Replace the contents of forumbit_depth2_forum_lastpost with:

<span class="w3-small"><a href="{$lastpost_link}" title="{$full_lastpost_subject}"><strong>{$lastpost_subject}</strong></a>
<br>{$lastpost_date}<br>{$lang->by}&nbsp;<div class="w3-dropdown-hover w3-right">
  {$lastpost_profilelink}
  <div class="w3-dropdown-content w3-leftbar w3-rightbar w3-topbar w3-bottombar w3-border-blue" style="width:400px; right:0;">
	  <div class="w3-left-align">
		  <div class="w3-row w3-blue">
			  <div class="w3-col w3-padding l12">Ashley</div>
		  </div>
		  <div class="w3-row">
			  <div class="w3-col w3-center w3-padding l4"><img src="images/default_avatar.png" alt="" width="100" height="100"><br>(Administrator)<br>					
					<img src="images/star.png" border="0" alt="*"><img src="images/star.png" border="0" alt="*"><img src="images/star.png" border="0" alt="*"><img src="images/star.png" border="0" alt="*"><img src="images/star.png" border="0" alt="*"><img src="images/star.png" border="0" alt="*"><img src="images/star.png" border="0" alt="*"><br></div>
			  <div class="w3-col w3-padding l8">
					<strong>Registration Date:</strong> 05-24-2016<br>
					<strong>Date of Birth:</strong> Not Specified<br>
					<strong>Local Time:</strong> 06-19-2016 at 09:25 PM<br>
			  </div>
			</div>  
	 </div>		  
  </div>
</div></span>

3) Then go to the index and hover over a member profile in the last post section. 

The hardcoded entries above are obviously taken from account summary in the member_profile template.