TwistedGA |
|
---|---|
Ahhh, my bad. I'll write ya some code for it later.
Open up your functions.php and search for:
elseif($type == 'photo')
{
if(!empty($image))
{
return '<img src="'.$image.'" alt="" class="photo" />';
}
}
Replace with:
elseif($type == 'photo')
{
if(empty($image))
{
$image = 'datas/defaultav/blank2.png';
}
return '<img src="'.$image.'" alt="" class="photo" />';
}
You need to have blank2.png in the same folder as the blank.png for this to work. ![]() [color=#CC0000]Lazymod[/color] [color=#000000]Studios[/color]
|
|
Dieser Beitrag wurde von TwistedGA (am 14. April 2009, 04:15, vor 16 Jahre) bearbeitet |