MyBB Community Forums

Full Version: Display Total Threads In A Member's Profile
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
The title says it all, I can't find the code to display a users total threads along with the user's total posts in their profile.
the code should be already present in member_profile template
<tr>
	<td class="trow2"><strong>{$lang->total_threads}</strong></td>
	<td class="trow2">{$memprofile['threadnum']} ({$lang->tpd_percent_total})<br /><span class="smalltext">(<a href="search.php?action=finduserthreads&amp;uid={$uid}">{$lang->find_threads}</a>)</span></td>
 </tr>
(2015-01-19, 03:44 AM).m. Wrote: [ -> ]the code should be already present in member_profile template
<tr>
	<td class="trow2"><strong>{$lang->total_threads}</strong></td>
	<td class="trow2">{$memprofile['threadnum']} ({$lang->tpd_percent_total})<br /><span class="smalltext">(<a href="search.php?action=finduserthreads&amp;uid={$uid}">{$lang->find_threads}</a>)</span></td>
 </tr>

1. It wasn't there.
2. It doesn't work.
1.6 does not offer this as a default feature. You would need a plugin to count the number of threads a member has. There might be a plugin available on the olds mods site. If not, try hooking to either member_profile_start or member_profile_end. One of those should work.