vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.6 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=194)
-   -   Forum Home Enhancements - Top xx Reputation Forum Home (https://vborg.vbsupport.ru/showthread.php?t=117959)

Atakan KOC 06-07-2006 10:00 PM

Top xx Reputation Forum Home
 
Top xx Reputation Forum Home

(Mini Hack)

Go to your admin cp, then:
Plugin System -> Manage Products -> [Add/Import Product] -> Select 'product-toprep.xml' from your computer then press 'Import'

1.0.0 Initial Version.
1.0.1 Vb.3.6.0 B1

Desihunk 06-08-2006 01:11 AM

Great hack there. I'll install it after upgrading my board.

A question not related to the hack:-

What hack did you use to get the "Google Adsense" to show up on the "Who's Online List"...

KimmiKat 06-08-2006 02:45 AM

Great little product! One question... Where do you go to change the "Top Reputation" to something else? On my mboard we call the reputation thing "Brownie Points." Thanks.

Edit: I found it. Top Reputation is mispelled as "Top Repulation," which is why the phrase search thingy didn't find it.

influence 06-09-2006 01:52 PM

how about a vbadvanced module for it?

Desihunk 06-09-2006 09:54 PM

Hey,

I want to know how did you guys get that Google Bot thingy to show up? I mean which hack did you use? :)

Thanks.

Atakan KOC 06-13-2006 05:27 AM

Quote:

Originally Posted by Mike-D
Salem ale kum, Atakan ;)
do you know how I can use your hack with vB 3.54? Thank you my friend ;) -Mike

[Edit] Its Ok, I just found it Here

Ve Aleyk?mselam Michael ;)

By Kus 07-30-2006 04:34 PM

emegine saglik kardesim...

MajorFm.com 08-13-2006 11:00 AM

Spotted a typo...

Top Repulation

where can i change this?

djtheropy 08-13-2006 11:54 AM

search phrases (admincp -> languages & phrases -> search in phrases) for "Top Repulation" and do a translation, in the translation rename it to whatever u want :)

Toopac 08-14-2006 07:34 AM

Any chance of having this top rep hack collapse? I'd appreciate that!

Aislinn 08-15-2006 01:45 AM

Ditto on the collapse. Very nice thank you.

MorrisMcD 12-04-2006 05:26 AM

Quote:

Originally Posted by Toopac (Post 1051772)
Any chance of having this top rep hack collapse? I'd appreciate that!

Quote:

Originally Posted by Aislinn (Post 1052485)
Ditto on the collapse. Very nice thank you.

+1... Looks great with all the other stats.. Only one that doesn't collapse though :(

DeR_BeST 01-02-2007 06:31 AM

Teşekkürler Atakan KOC Selametle

Jesakos 02-24-2007 10:05 PM

i need this addon and for top xx posters can anyone help me?

dutchbb 02-25-2007 02:45 PM

Can it be done so it doesn't add a query every page renewal (only checks and updates the ranking every week or so) ?

patrickstar 07-06-2007 05:52 PM

does this work for 3.6.7?

installed it and cant see it.

*edit* nevermind....had the 'display logged users option' turned off.

works fine, thanks for the hack.

HeRmAn'S 08-18-2007 09:24 AM

dont not show vb option this hack ...my version 3.6.8 :o ....why ? :)

MrBig 08-19-2007 12:22 AM

this would be nice if it also showed their Avatar..

VIPER-MAN 08-27-2007 02:05 AM

Is there anyway to get their reputation TEXT to show instead of their points?

For example, instead of showing "JoeUser(50)", show "JoeUser(Great Reputation)"

Its the Reputation Level vs Reputation Points.

Any ideas? I see in the XML file I just need to change the DB field to the appropriate field then reinstall... any idea what that is?

FROM

$sonuclaryaz .= "<a href=\"member.php?u=".$getrep['userid']."\">".$getrep['username']."</a> (".$getrep['reputation']."), ";

TO

$sonuclaryaz .= "<a href=\"member.php?u=".$getrep['userid']."\">".$getrep['username']."</a> (".$getrep['reputation']."), "; (The bolded text needs to be changed)

TigerWare 08-28-2007 08:32 PM

[high]* TigerWare clicks installed.
[/high]

Sweet 'n' simple Atakan KOC, thanks.

I'd like to add my voice to adding a collapse option too, just to make it consistent with the other tables there.

Also, there's an additional comma after the last entry in the listed users. It would be nice to have this removed.

:up:

Adam21 09-02-2007 06:50 AM

How do we enable it to display column by column in the sidebar in forumhome?Thanks

TigerWare 09-11-2007 03:27 PM

Quote:

Originally Posted by TigerWare (Post 1327638)
I'd like to add my voice to adding a collapse option too, just to make it consistent with the other tables there.


Hope you don't mind Atakan KOC, but I made a modification to your template FORUMHOME_toprep, which allows the table to be collapsable like the others. Please feel free to steal this slight alteration. :up:

Your current html:-
HTML Code:

<tbody>
  <tr><td class="thead" colspan="2">
      $vbphrase[tr_popular]
  </td></tr>
</tbody>
<tbody>
  <tr>
    <td class="alt2"><a href="memberlist.php">
      <img src="$stylevar[imgdir_misc]/stats.gif" alt="" border="0" />
    </td>
    <td class="alt1" width="100%">
      <div class="smallfont">$sonuclaryaz</div>
    </td>
  </tr>
</tbody>

Changed to this:-
HTML Code:

<thead>
  <tr><td class="thead" colspan="2">
    <a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('topxxxreputation')"><img id="collapseimg_topxxxreputation" src="$stylevar[imgdir_button]/collapse_thead$vbcollapse[collapseimg_topxxxreputation].gif" alt="" border="0" /></a>
    $vbphrase[tr_popular]
  </td></tr>
</thead>
<tbody id="collapseobj_topxxxreputation" style="$vbcollapse[collapseobj_topxxxreputation]">
  <tr>
    <td class="alt2"><a href="memberlist.php">
      <img src="$stylevar[imgdir_misc]/stats.gif" alt="" border="0" />
    </td>
    <td class="alt1" width="100%">
      <div class="smallfont">$sonuclaryaz</div>
    </td>
  </tr>
</tbody>


adom7 09-27-2007 06:33 AM

Good job! Thanks, install.
Is it possible to add more users for it ? not 5 but 10?
I'd also like to add my voice to adding a collapse option too, just to make it consistent with the other tables there.

teşekk?rler atakan bey,
?ye listesini 5 yerine 10 yapma ya da dahası i?in bir alternatif d?ş?nebilinir mi?
yukarıda biri daha s?ylemiş, kişisel tercihe g?re column acma kapama fonksiyonu olması m?mk?n m??

-y?klendi-

Adam21 09-30-2007 04:58 AM

In your Admincp,under Products & Plug-Ins,under Product:Top Reputation Forum Home,edit the Top xx Reputation Forum Home under Hook Location - forumhome_start ,find

Code:

$adet<10)
Edit both same values in the plug-in that you want to display as the top reputation.

To remove the extra comma at the last member,find

Code:

$sonuclaryaz .= "<a href=\"member.php?u=".$getrep['userid']."\">".$getrep['username']."</a> (".$getrep['reputation'].") , ";
Remove the comma in red

katilkuzu 10-12-2007 09:35 AM

good job dude.

yoyoyoyo 10-12-2007 10:15 AM

Here is an updated xml file that fixes some bugs and also allows the box to be collapsed

VIPER-MAN 03-20-2008 11:04 PM

Anyone know if this works in 3.7 RCx?

anwar.abdullakh 04-16-2008 09:12 PM

can anyone tell me how I can't exclude admins from this top stats?

VIPER-MAN 06-11-2008 05:08 PM

FYI -- this works on my 3.7.1 install ... and even was able to modify the code to exclude admin's from the Top Rep list.

VIPER-MAN 06-11-2008 05:11 PM

Quote:

Originally Posted by anwar.abdullakh (Post 1492492)
can anyone tell me how I can't exclude admins from this top stats?

I did this by modifying the code (AdminCP - Plugin Manager) select "Top XXX" and append a WHERE clause to the SQL statement.

My statement now reads:

$db->query_read("SELECT * FROM " . TABLE_PREFIX . "user WHERE userid <> 1 ORDER BY reputation DESC LIMIT 0, $adet");

This omits the main admin user. As for all admins, you'd have to exclude the usergroup, vs the userid.

Good luck.

Uberguilds 06-13-2008 08:51 AM

is there a way to implement the top 5 and the bottom 5 reps on forum home?


All times are GMT. The time now is 01:04 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01319 seconds
  • Memory Usage 1,784KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code_printable
  • (2)bbcode_html_printable
  • (5)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (31)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete