| Author |
Message |
glidergirl Hangin' Around

Joined: Feb 28, 2004 Posts: 35 Location: Kentucky
|
Posted:
Sun Feb 29, 2004 12:50 pm |
|
We want our forums to be an accessory and not the main feature of our site. As such, we would prefer to not have the avatar feature. However, even though I've turned off all the avatar features in Avatar Management in the control panel, I still get the big ugly "where's the picture?" red X.
Is there a way to turn off the avatar feature completely, but later revisit it and turn it on if we decide otherwise? |
|
|
 |
 |
chatserv The Mouse Is Extension Of Arm

Joined: May 02, 2003 Posts: 1396 Location: Puerto Rico
|
Posted:
Sun Feb 29, 2004 2:01 pm |
|
run this query through phpMyAdmin:
update nuke_users set user_avatar = 'gallery/blank.gif';
The Your_Account module might need editing to take out the avatar selection section. |
|
|
|
 |
glidergirl Hangin' Around

Joined: Feb 28, 2004 Posts: 35 Location: Kentucky
|
Posted:
Thu Mar 25, 2004 12:11 am |
|
Well, we decided to go ahead and use avatars. However, we can't link them (they just don't show after submitting the URL), and can't upload them (get a message that only jpgs and gifs and png extensions are allowed, when, of course, all we're submitting are jpgs and gifs).
Big red Xs aren't attractive. Can this be fixed?
FYI, the site is |
|
|
 |
 |
twelves Regular


Joined: Aug 22, 2003 Posts: 84
|
Posted:
Sat Mar 27, 2004 11:47 pm |
|
In modules/Forums/viewtopic.php look for the following and remove it!
The first and only fix I ever got working. Users that fail to register an avatar have nothing. Guest has nothing.
Members have what ever they choose, when they get around to it.
// Default Avatar MOD - Begin
//
if ( empty($poster_avatar) && $poster_id != ANONYMOUS)
{
$poster_avatar = '<img src="' . $images['default_avatar'] . '" alt="" border="0" />';
}
if ( $poster_id == ANONYMOUS )
{
$poster_avatar = '<img src="' . $images['guest_avatar'] . '" alt="" border="0" />';
}
//
// Default Avatar MOD - End
 |
|
|
|
 |
Raven Site Admin/Owner

Joined: Aug 27, 2002 Posts: 16987 Location: Kansas
|
Posted:
Sun Mar 28, 2004 7:51 am |
|
You are partially correct. You also need to block out the logic in Your_Account/index.php that shows the same basic display. Otherwise it appears that they can select an avatar. |
|
|
|
 |
|
|
|
|