Ranks Page

Modifications for phpBB3.
Try the Mods here and share Your own Mods
Forum rules
You dont have to use ModX or make your mod AutoMod compatible. A simple textfile is fine
But if you post Mods here You also have to give support

Re: Ranks Page

Post by Stoker »

You tell me when you have tried it :)

Re: Ranks Page

Post by Fire-Fox »

It opens like http://phpbb3addons.com/ranks/ in the browser :)

and when i link on my board with it becomes: ranks/ and not ranks.php
Last edited by Fire-Fox on 19 Apr 2010, 16:43, edited 1 time in total.

Re: Ranks Page

Post by denisesballs »

Hey all, mod works well, but I have an order issue. One of my special ranks is displayed after one of the regular ranks, making it look a bit odd. The VIP rank should be one above where it is so all the regular ranks are displayed in order. You can see it here - http://jesse.homedns.org:443/sabresboard.com/ranks.php

Any idea what I can change for that? Maybe ordering by ID would look better?

denisesballs » 22 Apr 2010, 16:05 wrote:Hey all, mod works well, but I have an order issue. One of my special ranks is displayed after one of the regular ranks, making it look a bit odd. The VIP rank should be one above where it is so all the regular ranks are displayed in order. You can see it here - http://jesse.homedns.org:443/sabresboard.com/ranks.php

Any idea what I can change for that? Maybe ordering by ID would look better?
Figured it out myself, just changed in ranks.php:

Code: Select all

ORDER BY rank_min ASC';
to:

Code: Select all

ORDER BY rank_special DESC,rank_min ASC';

Also, if installing with automod, need to change install.xml:

Code: Select all

                <copy>
                        <file from="ranks.php" to="ranks.php" />
                </copy>
                <copy>
                        <file from="styles/prosilver/template/ranks_body.html" to="styles/prosilver/template/ranks_body.html" />
                </copy>
to:

Code: Select all

                <copy>
                        <file from="root/ranks.php" to="ranks.php" />
                </copy>
                <copy>
                        <file from="root/styles/prosilver/template/ranks_body.html" to="styles/prosilver/template/ranks_body.html" />
                </copy>
Last edited by cisco007 on 22 Apr 2010, 17:07, edited 1 time in total.
Reason: posts merged

Re: Ranks Page

Post by rumenrs »

Can be change for BlueStrike? :)

Re: Ranks Page

Post by Steve »

Do you mean to use on another style other than prosilver and subsilver2 ? sure try it just make sure you upload the correct simpleportal_body.html to work with what your style is based on prosilver or subsilver2.

Re: Ranks Page

Post by Inner Circle »

It would be great if you could decide via ACP or whatever which Ranks should be displayed and in which order they´ll be displayed...

Also the possibility to add an Description for each Rank ;)

Just a few suggestions....

Re: Ranks Page

Post by cisco007 »

can't you already add a description to each rank when you create them in the ACP?!
or do you mean for it to show in the ranks page!?

Re: Ranks Page

Post by Inner Circle »

cisco007 » 03 May 2010, 17:12 wrote:can't you already add a description to each rank when you create them in the ACP?!
or do you mean for it to show in the ranks page!?
I mean on the Ranks Page

Re: Ranks Page

Post by Stoker »

This attachment has been updated and fixed.