Top Five

All new MODs released in our MOD Database will be announced in here. All support for released MODs needs to take place in the Customisations Database.
Forum rules
READ: phpBB.com Board-Wide Rules and Regulations

NOTICE: This forum is only for the announcement of new releases and/or updates of MODs. Any MOD support should be obtained through the Customisations Database in the support area designated for each MOD.

A direct link to support for each MOD is in the first post of the respective topic.
Bouboule
Registered User
Posts: 108
Joined: Wed Sep 10, 2008 8:14 pm

Re: top_five

Post by Bouboule »

Hello to all

Very nice mod. Perhaps i use new sucks style and after install this mod the 'Newest Posts', 'Top Active Users' and 'Newest Users' didn't appear because they have white color. So white color and white border. I wouldn't like to change the style features just want one of two things :

- Change the text color to something else : purple, yellow, ...
- Change the border color of this mod ONLY : purple, yellow, ...

Thinks
SantoLeardo
Registered User
Posts: 20
Joined: Sun Apr 05, 2009 2:05 pm

Re: top_five

Post by SantoLeardo »

Good thanks :D
sunnyebiz
Registered User
Posts: 46
Joined: Thu Mar 05, 2009 2:31 pm

Re: top_five

Post by sunnyebiz »

Hi, I am having phpbb 3.0.3 ,will this mod not work in that version,is it compulsory to download phpbb3.04 for this,

i am new to this please guide me if i update 3.03 to 3.04 ,will all my previous mod deleted.
I am using black pearl template(subsilver2) .
becouse when i try to upgrade it throgh fantastico it shows:

PLEASE NOTE:

If you have modified the files, languages, themes or if you have added any third-party modifications to this installation of phpBB, it is possible that you may need to re-install your themes and/or reaaply your custom changes after using Fantastico to upgrade. We take no responsibility for the integrity of custom modified installations after Fantastico upgrades them. We recommend that you make your own backup of your database and script directory before proceeding even though Fantastico will automatically make one before upgrading.

Info: Your current installation will be backed up.

please guide me
User avatar
RMcGirr83
Former Team Member
Posts: 22067
Joined: Wed Jun 22, 2005 4:33 pm
Location: Your display
Name: Rich McGirr

Re: top_five

Post by RMcGirr83 »

It should work fine on a 3.0.3 board.
Former Modifications/Extensions Team Member | My extensions | github | All requests for support via PM will be ignored
Appreciate the extensions/mods/support then you can support me by buying a beer 🍺
sunnyebiz
Registered User
Posts: 46
Joined: Thu Mar 05, 2009 2:31 pm

Re: top_five

Post by sunnyebiz »

Hi

Thank you so much ,it has done,but one thing i want this mod to work below Statstics not above to birthdays,So what can i do
You do not have the required permissions to view the files attached to this post.
SantoLeardo
Registered User
Posts: 20
Joined: Sun Apr 05, 2009 2:05 pm

Re: top_five

Post by SantoLeardo »

Installed
User avatar
RMcGirr83
Former Team Member
Posts: 22067
Joined: Wed Jun 22, 2005 4:33 pm
Location: Your display
Name: Rich McGirr

Re: top_five

Post by RMcGirr83 »

sunnyebiz wrote:Hi

Thank you so much ,it has done,but one thing i want this mod to work below Statstics not above to birthdays,So what can i do
What is the name of the style you are using?
Former Modifications/Extensions Team Member | My extensions | github | All requests for support via PM will be ignored
Appreciate the extensions/mods/support then you can support me by buying a beer 🍺
sunnyebiz
Registered User
Posts: 46
Joined: Thu Mar 05, 2009 2:31 pm

Re: top_five

Post by sunnyebiz »

I am using black pearl style ( sub silver 2)
User avatar
RMcGirr83
Former Team Member
Posts: 22067
Joined: Wed Jun 22, 2005 4:33 pm
Location: Your display
Name: Rich McGirr

Re: top_five

Post by RMcGirr83 »

sunnyebiz wrote:I am using black pearl style ( sub silver 2)
Take this code, save it as top_five_body.html and upload it into your styles template folder overwriting the one that is there now.

Code: Select all


<div id="top_five_nh">
<script type="text/javascript">
<!--
tmp = 'birthdays';
if(GetCookie(tmp) == '2')
{
	ShowHide('top_five_nh', 'top_five_h', 'top_five_nh');
}
//-->
</script>
<div><div class="tbl-h-l"><div class="tbl-h-r"><div class="tbl-h-c"><img style="padding-top:9px;padding-right:6px;float:right;cursor:pointer;" src="{T_THEME_PATH}{$MG_MIN}" onclick="javascript:ShowHide('top_five_nh','top_five_h','top_five_nh');" /><div class="tbl-title"><h4>Top Five</h4></div></div></div></div>
<table class="tablebg" width="100%" cellpadding="0" cellspacing="0">
		<tr>
			<th width="40%">{L_NEWEST_TOPICS}</th>
			<th width="20%">{L_TOP_FIVE_ACTIVE}</th>
			<th width="40%">{L_TOP_FIVE_NEWEST}</th>
		</tr>
		<tr>
			<td class="row1"><!-- BEGIN hot_topic_row --><span class="genmed"><a href="{hot_topic_row.U_TOPIC}">{hot_topic_row.TOPIC_TITLE}</a>&nbsp;{hot_topic_row.USERNAME_FULL}</span><br /><!-- END hot_topic_row --></td>
			<td class="row1"><!-- BEGIN top_five_active --><span class="genmed">{top_five_active.USERNAME_FULL} {L_POSTS}: <a href="{top_five_active.S_SEARCH_ACTION}">{top_five_active.POSTS}</a></span><br /><!-- END top_five_active --></td>
			<td class="row1"><!-- BEGIN top_five_newest --><span class="genmed">{top_five_newest.USERNAME_FULL} {L_JOINED}: {top_five_newest.REG_DATE}</span><br /><!-- END top_five_newest --></td>
		</tr>
</table>
<div class="tbl-f-l"><div class="tbl-f-r"><div class="tbl-f-c">&nbsp;</div></div></div></div>
</div>

Then open index_body.html and find

Code: Select all

<!-- INCLUDE top_five_body.html -->
and move it before this in the same file.

Code: Select all

<!-- IF not S_USER_LOGGED_IN -->
	<br clear="all" />

	<form method="post" action="{S_LOGIN_ACTION}">
Refresh the template/purge the cache and see if that works for you.
Former Modifications/Extensions Team Member | My extensions | github | All requests for support via PM will be ignored
Appreciate the extensions/mods/support then you can support me by buying a beer 🍺
sunnyebiz
Registered User
Posts: 46
Joined: Thu Mar 05, 2009 2:31 pm

Re: top_five

Post by sunnyebiz »

Thanks a lot,It is working ,and i am very pleased for your kind support
User avatar
eman80
Registered User
Posts: 327
Joined: Tue Aug 19, 2008 1:49 pm

Re: top_five

Post by eman80 »

Great Mod Thank You sooooooo much :D
welcome to my forum:
http://www.elibrary4arab.com
aakash83
Registered User
Posts: 8
Joined: Thu Apr 09, 2009 7:44 pm

Re: top_five

Post by aakash83 »

thankuuu very much for such a wonderful mod, I have one question , Can you please tell me how can we display the name of the auther of last post instead of the name of topic starter(As this mod shows the name of topic starter). I am using board version 3.0.4 with Subsilver theme.
free video tutorials ,ebooks ,windows tips
www.vupages.com
User avatar
RMcGirr83
Former Team Member
Posts: 22067
Joined: Wed Jun 22, 2005 4:33 pm
Location: Your display
Name: Rich McGirr

Re: top_five

Post by RMcGirr83 »

aakash83 wrote:thankuuu very much for such a wonderful mod, I have one question , Can you please tell me how can we display the name of the auther of last post instead of the name of topic starter(As this mod shows the name of topic starter). I am using board version 3.0.4 with Subsilver theme.
OPEN

includes/top_five.php

FIND

Code: Select all

'ON'	=> 'p.poster_id = u.user_id',
replace with

Code: Select all

'ON'	=> 't.topic_last_poster_id = u.user_id',
Former Modifications/Extensions Team Member | My extensions | github | All requests for support via PM will be ignored
Appreciate the extensions/mods/support then you can support me by buying a beer 🍺
bob_raid
Registered User
Posts: 166
Joined: Thu Jan 17, 2008 12:53 am

Re: top_five

Post by bob_raid »

May I know will this mod show the last five topics that had a recent post which was
restricted for member view?
User avatar
RMcGirr83
Former Team Member
Posts: 22067
Joined: Wed Jun 22, 2005 4:33 pm
Location: Your display
Name: Rich McGirr

Re: top_five

Post by RMcGirr83 »

bob_raid wrote:May I know will this mod show the last five topics that had a recent post which was
restricted for member view?
If the user doesn't have the auths to view the forum that the topic is in, then they won't see that topic.
Former Modifications/Extensions Team Member | My extensions | github | All requests for support via PM will be ignored
Appreciate the extensions/mods/support then you can support me by buying a beer 🍺

Return to “[3.0.x] MOD Database Releases”