Search found 52 matches
- 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 
- 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...
Besides, I really wouldn't call this a mod...
- 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 ...
$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 ...
- 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 ...
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 ...
- 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
add after
add
Code: Select all
'USERNAME' => $user->data['username'],
Code: Select all
'PRIVATE_MESSAGE_INFO_UNREAD' => $l_privmsgs_text_unread,
- 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*
*cough* over reactive mods *cough*
- 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.![]()
shhh! don't tell them
- 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
If you know php well enough, just do it yourself and modify pages such as viewforum/index and in the styles, forumlist_body.html
If you know php well enough, just do it yourself and modify pages such as viewforum/index and in the styles, forumlist_body.html
- 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?
- 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 ...
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 ...