MyBB Community Forums

Full Version: [RELEASE] Threadcount v1.0 r2
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3
(2010-03-23, 08:41 PM)tommykent1210 Wrote: [ -> ]Are you using a plugin for the thanked posts? or is it just oyur template ??

it's a plugin.
Yeah, i thought so. Basically the template changes dont work as that plugin changes the code my plugin is looking for Confused. So put:

{$threadcount} 

into the member_profile template before

<br><span class="smalltext">(<a href="search.php?action=finduserthreads&amp;uid=1">Find All Thread....
(2010-03-23, 09:17 PM)tommykent1210 Wrote: [ -> ]Yeah, i thought so. Basically the template changes dont work as that plugin changes the code my plugin is looking for Confused. So put:

{$threadcount} 

into the member_profile template before

<br><span class="smalltext">(<a href="search.php?action=finduserthreads&amp;uid=1">Find All Thread....

definitely do not see that..here's my member_profile
<html>
<head>
<title>{$mybb->settings['bbname']} - {$lang->profile}</title>
{$headerinclude}
</head>
<body>
{$header}
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="trow1">
<table width="100%" cellspacing="0" cellpadding="0" border="0"><tr><td class="trow1" width="75%">
<span class="largetext"><strong>{$formattedname}</strong></span><br />
<span class="smalltext">
({$usertitle})<br />
{$groupimage}
{$userstars}<br />
<br />
<strong>{$lang->registration_date}</strong> {$memregdate}<br />
<strong>{$lang->date_of_birth}</strong> {$membday} {$membdayage}<br />
<strong>{$lang->local_time}</strong> {$localtime}<br />
<strong>{$lang->postbit_status}</strong> {$online_status}
</span>
</td><td width="25%" align="right" valign="middle">{$avatar}</td></tr></table>
</td>
</tr>
{$awaybit}
</table>
<br />
<table width="100%" cellspacing="0" cellpadding="0" border="0" align="center">
<tr>
<td width="50%" valign="top">
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td colspan="2" class="thead"><strong>{$lang->users_forum_info}</strong></td>
</tr>
<tr>
<td class="trow1"><strong>{$lang->joined}</strong></td>
<td class="trow1">{$memregdate}</td>
</tr>
<tr>
<td class="trow2"><strong>{$lang->lastvisit}</strong></td>
<td class="trow2">{$memlastvisitdate} {$memlastvisittime}</td>
</tr>
<tr>
<td class="trow1"><strong>{$lang->total_posts}</strong></td>
<td class="trow1">{$memprofile['postnum']} ({$lang->ppd_percent_total})<br /><span class="smalltext">(<a href="search.php?action=finduserthreads&amp;uid={$uid}">{$lang->find_threads}</a> &mdash; <a href="search.php?action=finduser&amp;uid={$uid}">{$lang->find_posts}{$memprofile['thx']}</a>)</span></td>
</tr>
<tr>
<td class="trow2"><strong>{$lang->timeonline}</strong></td>
<td class="trow2">{$timeonline}</td>
</tr>
{$reputation}
{$easyrefer}

{$warning_level}{$thx_note}
</table>
<br />
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td colspan="2" class="thead"><strong>{$lang->users_contact_details}</strong></td>
</tr>
<tr>
<td class="trow1"><strong>{$lang->homepage}</strong></td>
<td class="trow1">{$website}</td>
</tr>
{$sendemail}
<tr>
<td class="trow2"><strong>{$lang->pm}</strong></td>
<td class="trow2"><a href="private.php?action=send&amp;uid={$memprofile['uid']}">{$lang->send_pm}</a></td>
</tr>
<tr>
<td class="trow1"><strong>{$lang->icq_number}</strong></td>
<td class="trow1"><a href="javascript:;" onclick="MyBB.popupWindow('misc.php?action=imcenter&amp;imtype=icq&amp;uid={$uid}', 'imcenter', 450, 300);">{$memprofile['icq']}</a></td>
</tr>
<tr>
<td class="trow2"><strong>{$lang->aim_screenname}</strong></td>
<td class="trow2"><a href="javascript:;" onclick="MyBB.popupWindow('misc.php?action=imcenter&amp;imtype=aim&amp;uid={$uid}', 'imcenter', 450, 300);">{$memprofile['aim']}</a></td>
</tr>
<tr>
<td class="trow1"><strong>{$lang->yahoo_id}</strong></td>
<td class="trow1"><a href="javascript:;" onclick="MyBB.popupWindow('misc.php?action=imcenter&amp;imtype=yahoo&amp;uid={$uid}', 'imcenter', 450, 300);">{$memprofile['yahoo']}</a></td>
</tr>
<tr>
<td class="trow2"><strong>{$lang->msn}</strong></td>
<td class="trow2"><a href="javascript:;" onclick="MyBB.popupWindow('misc.php?action=imcenter&amp;imtype=msn&amp;uid={$uid}', 'imcenter', 450, 300);">{$memprofile['msn']}</a></td>
</tr>
</table>
</td>
<td><img src="{$theme['imgdir']}/pixel.gif" height="1" width="8" alt=""/></td>
<td width="50%" valign="top">
{$profilefields}
{$galleries}
{$signature}{$pp_box}
<br />{$buddylist}{$modoptions}<!-- ProfileComments -->{$comments_index}<!-- /ProfileComments -->
</td>
</tr>
</table>
{$footer}
</body>
</html>
Here: This is it:

<tr>
<td class="trow1"><strong>{$lang->total_posts}</strong></td>
<td class="trow1">{$memprofile['postnum']} ({$lang->ppd_percent_total})<br /><span class="smalltext">(<a href="search.php?action=finduserthreads&amp;uid={$uid}">{$lang->find_threads}</a> &mdash; <a href="search.php?action=finduser&amp;uid={$uid}">{$lang->find_posts}{$memprofile['thx']}</a>)</span></td>
</tr>
(2010-03-24, 07:23 AM)tommykent1210 Wrote: [ -> ]Here: This is it:

<tr>
<td class="trow1"><strong>{$lang->total_posts}</strong></td>
<td class="trow1">{$memprofile['postnum']} ({$lang->ppd_percent_total})<br /><span class="smalltext">(<a href="search.php?action=finduserthreads&amp;uid={$uid}">{$lang->find_threads}</a> &mdash; <a href="search.php?action=finduser&amp;uid={$uid}">{$lang->find_posts}{$memprofile['thx']}</a>)</span></td>
</tr>

ok, cool...it's there, but the count is definitely off..it says I have 6 threads..I have more than that in this forum alone:
http://www.pazrt.com/forum/forum-website-news
hmmm, strange it should work.. I dont see the plugin, is it uninstalled?
rofl
my entire webhost got hacked yesterday
=/ I will not be able to use the plugin until new notice
sorry xD
wow... lol... Thats unusual... Who's your host?
(2010-03-24, 08:36 PM)tommykent1210 Wrote: [ -> ]hmmm, strange it should work.. I dont see the plugin, is it uninstalled?

it's right where you told me to put it....

http://www.pazrt.com/forum/user-andrewjs18

409 (1.79 posts per day | 7.57 percent of total posts)Threads 6
(Find All Threads — Find All Posts - Find All Thanked Posts)
mustn't be visible to guests, how strange Confused

andrewjs18's Forum Info
Joined: 	08-07-2009
Last Visit 	Today 05:12 PM
Total Posts: 	411 (1.8 posts per day | 7.6 percent of total posts)
(Find All Threads — Find All Posts - Find All Thanked Posts)
Time Spent Online: 	2 Weeks, 2 Days, 31 Minutes, 39 Seconds
Reputation: 	18 [Details]
Referrals: 	3 [Details]
ThankYou!:	Thanked 11 Times in 11 Posts
Pages: 1 2 3