Page 1 of 1

New Legend

Posted: 26 Jul 2011, 21:27
by Stoker
New Legend
Written by Stoker

Lets spice up the legend display on forum index.
This little change makes it look like on the screenshots.
Before
Before
After
After
Open index.php
Find:

Code: Select all

$legend[] = '<span' . $colour_text . '>' . $group_name . '</span>';
Replace with:

Code: Select all

$legend[] = '<span' . $colour_text . '>[' . $group_name . ']</span>';
Find:

Code: Select all

$legend[] = '<a' . $colour_text . ' href="' . append_sid("{$phpbb_root_path}memberlist.$phpEx", 'mode=group&g=' . $row['group_id']) . '">' . $group_name . '</a>';
Replace with:

Code: Select all

$legend[] = '<a' . $colour_text . ' href="' . append_sid("{$phpbb_root_path}memberlist.$phpEx", 'mode=group&g=' . $row['group_id']) . '">[' . $group_name . ']</a>';
Find:

Code: Select all

$legend = implode(', ', $legend);
Replace with:

Code: Select all

$legend = implode(' || ', $legend);
Open styles/prosilver/template/index_body.html
Find:

Code: Select all

<!-- IF LEGEND --><br /><em>{L_LEGEND}: {LEGEND}</em><!-- ENDIF --></p>
Replace with:

Code: Select all

<!-- IF LEGEND --><br />{L_LEGEND}: {LEGEND}<!-- ENDIF --></p>

New Legend

Posted: 09 Nov 2011, 00:31
by Terr0r
thanks for this one you can use this also for mChat

EDIT

is it possible to set the legend under each other ? so yes how can I do that ?

already thanks for the help

Greets Terr0r

New Legend

Posted: 09 Nov 2011, 16:25
by Stoker
Use $legend = implode('<br />', $legend); instead of $legend = implode(' || ', $legend);

New Legend

Posted: 09 Nov 2011, 17:00
by Terr0r
I have replace this code $legend = implode(' || ', $legend); for this one $legend = implode('<br />', $legend); but it is not working

EDIT
It is working I had upload the wrong file :D

New Legend

Posted: 09 Nov 2011, 17:04
by Stoker
Link?
And what happens when you make the change?

This is what happens when I make the change:
legend.png
That was what you wanted correct?

New Legend

Posted: 09 Nov 2011, 17:31
by Terr0r
It is working now for me I had upload the wrong file :D

And I have another question is it possible to set the legend on a other place

I have now this
legend1.png
And I want something like this
legend2.png
Is that possible I hope that it is possible

already thanks for the help

Greets Terr0r

New Legend

Posted: 09 Nov 2011, 17:33
by Stoker
I think there is a mod called legend positioning at phpbb.com

New Legend

Posted: 09 Nov 2011, 17:36
by Terr0r
I have found this one http://www.phpbb.com/customise/db/mod/g ... sitioning/ but it is for phpBB 3.0.RC7 I hope that it is working on phpBB 3.0.9

is there not a easier way to do this ? I hope it

is there no file in phpBB that where I can change that ?

Greets Terr0r