Search found 52 matches

by geoffreak
Mon Apr 02, 2007 1:35 pm
Forum: [3.0/Olympus] Styling
Topic: Buttons and Forum Borders
Replies: 4
Views: 6038

Re: Buttons and Forum Borders

edit the images to make all the corners transparent :mrgreen:
by geoffreak
Mon Apr 02, 2007 1:35 pm
Forum: [3.0/Olympus] Styling
Topic: Please, help in template variables
Replies: 10
Views: 13854

Re: Please, help in template variables

Well mods won't matter as nobody is using them on an open board. ;)
Besides, I really wouldn't call this a mod... :roll:
by geoffreak
Sun Apr 01, 2007 9:45 pm
Forum: [3.0/Olympus] Styling
Topic: Please, help in template variables
Replies: 10
Views: 13854

Re: Please, help in template variables

add // Grab Avatar Info
$avatar_img = '';

$sql = 'SELECT
user_id,
user_avatar,
user_avatar_type,
user_avatar_width,
user_avatar_height
FROM
' . USERS_TABLE . "
WHERE
user_id = " . $user->data['user_id'];

$result = $db->sql_query($sql);
while ($row = $db->sql_fetchrow($result ...
by geoffreak
Sun Apr 01, 2007 5:47 pm
Forum: [3.0/Olympus] Styling
Topic: Please, help in template variables
Replies: 10
Views: 13854

Re: Please, help in template variables

you can also just use another variable:

The username is already available in every page :) Use the variable {S_USERNAME} ;)
However, if you want the colored username with link to the profile, you must add in functions.php, in the page_header function (line ~3935, after the S_USERNAME declaration ...
by geoffreak
Sun Apr 01, 2007 5:45 pm
Forum: [3.0/Olympus] Styling
Topic: Please, help in template variables
Replies: 10
Views: 13854

Re: Please, help in template variables

includes/functions.php :D

add

Code: Select all

'USERNAME'			=> $user->data['username'],
after

Code: Select all

'PRIVATE_MESSAGE_INFO_UNREAD'	=> $l_privmsgs_text_unread,
by geoffreak
Sun Apr 01, 2007 1:53 am
Forum: [3.0/Olympus] Styling
Topic: Where can I get phpbb 3.0.B5 styles from?
Replies: 14
Views: 17943

Re: Where can I get phpbb 3.0.B5 styles from?

link is in my signature now but I have no idea why it was removed
*cough* over reactive mods *cough*
by geoffreak
Sat Mar 31, 2007 4:32 am
Forum: [3.0/Olympus] Discussion
Topic: Bug is less,
Replies: 1779
Views: 1886646

Re: Bug is less,

Highway of Life wrote: No, I don’t think SHS` is serious. :D


shhh! don't tell them :lol: :mrgreen:
by geoffreak
Sat Mar 31, 2007 4:24 am
Forum: [3.0/Olympus] Discussion
Topic: Subforum listings - depth appearance question
Replies: 2
Views: 3906

Re: Subforum listings - depth appearance question

The way you are asking, it is a mod/feature request :lol:

If you know php well enough, just do it yourself and modify pages such as viewforum/index and in the styles, forumlist_body.html
by geoffreak
Fri Mar 30, 2007 9:35 pm
Forum: [3.0/Olympus] Styling
Topic: Custom Titles, is there an option or mod for them?
Replies: 8
Views: 13018

Re: Custom Titles, is there an option or mod for them?

I personally haven't tried profile fields, but is there an option in the ACP to enable the field on viewtopic?
by geoffreak
Fri Mar 30, 2007 5:12 am
Forum: [3.0/Olympus] Styling
Topic: Custom Titles, is there an option or mod for them?
Replies: 8
Views: 13018

Re: Custom Titles, is there an option or mod for them?

Yeah they are called custom profile fields.
I quote what is in viewtopic_body.html:
<!-- IF postrow.S_PROFILE_FIELD1 -->
<!-- Use a construct like this to include admin defined profile fields. Replace FIELD1 with the name of your field. -->
<br /><b>{postrow.PROFILE_FIELD1_NAME}:</b> {postrow ...