[3.0.7] Extra Ranks Mod 1.1.0

Viewtopic, viewforum, posting related hacks and MODs.
Viewing topics, forums, or posting add-ons.

[3.0.7] Extra Ranks Mod 1.1.0

Postby ..::Frans::.. » 21 Apr 2007, 15:17

MOD Title: Extra Ranks Mod
MOD Description: This modification will add 3 extra ranks, configurable in the ACP as a per-user setting. Ranks can be chosen from the standard "ranks" table and will be shown in viewtopic and memberlist
MOD Version: 1.1.0
phpBB Version: 3.0.7

Changed since version 0.1.0
  1. Added ranks to profile
  2. Added ranks to memberlist
  3. Added ranks to teampage
  4. Added language support

Changed since version 0.2.0
  1. Typo in acp_users.html
  2. Added correct label for special ranks

Changed since version 0.2.1
  1. Typo in SQL statements - corrected (thnx to Billy ;))

Changed since version 0.2.2
  1. There is quite a difference in number of spaces between the templates in earlier versions and RC1. Fixed

Changed since version 1.0.0
  1. Typo in open statement (2). Fixed

Changed since version 1.0.1
  1. Changed some minor changes in layout and coding

Changed Topic version
  1. Version 1.0.2 works perfectly on a RC4 board, no changes so just changed topic title and post info

Changed since version 1.0.2
  1. Changed few minor things to make this mod RC7 compatible.
  2. Beware, the style changes (addons) you need to do are for prosilver ONLY. It's easy to figure out what things you need to add when using another style!

Changed since version 1.0.3
  1. Changed few minor things to make this mod RC8 compatible.
  2. Added steps for changing styles prosilver AND subsilver2. It shouldn't be too hard to implement them into any other style with the examples showed here.
  3. Started to add extra group ranks too, but not in this release yet. I can't see any use of this feature..... I anyone wants this please klet me know.
  4. Cleaned up code dramatically. Uses no extra queries anymore now.

Changed since version 1.0.4
  1. Changed few minor things to make this mod phpbb3 Gold compatible.

Changed since version 1.0.5
  • Updated code to work with version 3.0.7
  • Updated install file to work with modX 1.2.5
  • Added an extra rank so 3 extra ranks are now available

Screenshots:
extra_ranks.png


Latest version for phpbb3 3.0.7:
Extra ranks mod 1.1.0.zip
(36.48 KiB) Downloaded 1140 times


Older version 1.0.5:
Extra Ranks Mod 105.zip
(7.14 KiB) Downloaded 310 times
Last edited by ..::Frans::.. on 01 Aug 2007, 05:20, edited 16 times in total.
ping...
User avatar
..::Frans::..
STG Development
STG Development
 
Posts: 1608
Joined: 28 Mar 2007, 15:37
Location: Netherlands
Favorite Team: RKC
Gender: Male
phpBB Knowledge: 9


Re: [BETA] Extra Ranks Mod 0.1.0

Postby geoffreak » 21 Apr 2007, 15:33

Awesome! :good: :yahoo:
Earthlings, we have been watching you for years, and now we know your primitive language, so listen: All your base are belong to us.
Anime Bite - Your future #1 source for all things anime and manga!My Blog
User avatar
geoffreak    
Supporter
Supporter
 
Posts: 663
Joined: 17 Mar 2007, 21:52
Location: The Internets
Favorite Team: phpBB
Gender: Male
phpBB Knowledge: 9

Re: [BETA] Extra Ranks Mod 0.2.0

Postby ..::Frans::.. » 22 Apr 2007, 04:32

Thanx Geoffreak,

Added support for some standard pages... ;)
ping...
User avatar
..::Frans::..
STG Development
STG Development
 
Posts: 1608
Joined: 28 Mar 2007, 15:37
Location: Netherlands
Favorite Team: RKC
Gender: Male
phpBB Knowledge: 9

Re: [BETA] Extra Ranks Mod 0.2.1

Postby Semi_Deus » 22 Apr 2007, 05:22

I Like it!

(Also the rank images you used :P )
Former Moderator & Styles team member
Image
User avatar
Semi_Deus
Admiral
Admiral
 
Posts: 2479
Joined: 13 Feb 2007, 13:53
Location: Netherlands
Favorite Team: Ajax
Gender: Male
phpBB Knowledge: 8

Re: [BETA] Extra Ranks Mod 0.2.1

Postby ..::Frans::.. » 22 Apr 2007, 06:22

Thnx, needed some rank images to go with the local setup, and i found these....


want credits in the screenshots used ?? :rotfl:
ping...
User avatar
..::Frans::..
STG Development
STG Development
 
Posts: 1608
Joined: 28 Mar 2007, 15:37
Location: Netherlands
Favorite Team: RKC
Gender: Male
phpBB Knowledge: 9

Re: [BETA] Extra Ranks Mod 0.2.1

Postby Billy » 22 Apr 2007, 09:46

Thank you very much fjtbeers, for doing all the hard work I have been waiting for this mod for a very long time. this is great :yahoo:


update:
Code: Select all
ALTER TABLE `phpbb_users` ADD `user_rank3` MEDIUMINT( 8 ) UNSIGNED NOT NULL DEFAULT '0' AFTER `user_rank2;`



change to:
Code: Select all
ALTER TABLE `phpbb_users` ADD `user_rank3` MEDIUMINT( 8 ) UNSIGNED NOT NULL DEFAULT '0' AFTER `user_rank2`;
User avatar
Billy
Ensign
Ensign
 
Posts: 78
Joined: 21 Feb 2007, 15:25
Location: Oregon, USA
Gender: Male

Re: [BETA] Extra Ranks Mod 0.2.2

Postby ..::Frans::.. » 22 Apr 2007, 10:57

Thnx Billy, changed the file. :good:
ping...
User avatar
..::Frans::..
STG Development
STG Development
 
Posts: 1608
Joined: 28 Mar 2007, 15:37
Location: Netherlands
Favorite Team: RKC
Gender: Male
phpBB Knowledge: 9

Re: [BETA] Extra Ranks Mod 0.2.2

Postby Billy » 22 Apr 2007, 14:03

umm I must be on the wrong cvs or something because i can not find some of this code :cray:

I cant find this part
Code: Select all
#-----[ OPEN ]------------------------------------------
#
# REMEMBER: You need to do this for every style you use on your forum
#
{ROOT}/styles/{STYLE}/template/viewtopic_body.html
#
#-----[ FIND ]------------------------------------------
#

         <!-- IF postrow.RANK_TITLE or postrow.RANK_IMG --><dd>{postrow.RANK_TITLE}<!-- IF postrow.RANK_TITLE and postrow.RANK_IMG --><br /><!-- ENDIF -->{postrow.RANK_IMG}</dd><!-- ENDIF -->
#


for me it looks like this

Code: Select all
<!-- IF postrow.RANK_TITLE -->
            <tr>
               <td class="postdetails">{postrow.RANK_TITLE}</td>
            </tr>
         <!-- ENDIF -->
         <!-- IF postrow.RANK_IMG -->
            <tr>
               <td>{postrow.RANK_IMG}</td>
            </tr>
         <!-- ENDIF -->
User avatar
Billy
Ensign
Ensign
 
Posts: 78
Joined: 21 Feb 2007, 15:25
Location: Oregon, USA
Gender: Male

Re: [BETA] Extra Ranks Mod 0.2.2

Postby ..::Frans::.. » 22 Apr 2007, 16:20

hmmm, using a completely fresh cvs dated 20-04-2007 style = prosilver :scratch:
ping...
User avatar
..::Frans::..
STG Development
STG Development
 
Posts: 1608
Joined: 28 Mar 2007, 15:37
Location: Netherlands
Favorite Team: RKC
Gender: Male
phpBB Knowledge: 9

Re: [BETA] Extra Ranks Mod 0.2.2

Postby Billy » 22 Apr 2007, 20:28

Ok I have looked and I cant fine the thread on how to update my CVS I know it is here somewhere can some one direct me please.
User avatar
Billy
Ensign
Ensign
 
Posts: 78
Joined: 21 Feb 2007, 15:25
Location: Oregon, USA
Gender: Male

Next

Return to Topic, Forum, Posting MOD Downloads

Who is online

Users browsing this forum: Magpie Crawler and 10 guests