U, nie ma do tego ustawień. Zunifikowali to w obrębie forum.. Zapraszam do pliku: admin/sources/base/ipsMember.php
A tam:
static public function buildPhotoTag( $member, $size='thumb', $noCache=false, $noBorder=false )
{
$rnd = ( $noCache === true ) ? "?_r=" . md5( uniqid() ) : '';
$cls = '';
switch( $size )
{
default:
case 'thumb':
$src = $member['pp_thumb_photo'];
$w = $member['pp_thumb_width'];
$h = $member['pp_thumb_height'];
break;
case 'main':
case 'full':
$src = $member['pp_main_photo'];
$w = $member['pp_main_width'];
$h = $member['pp_main_height'];
break;
case 'small':
$_data = IPSLib::scaleImage( array( 'max_height' => 50, 'max_width' => 50, 'cur_width' => $member['pp_thumb_width'], 'cur_height' => $member['pp_thumb_height'] ) );
$src = $member['pp_thumb_photo'];
$w = $_data['img_width'];
$h = $_data['img_height'];
$cls = 'ipsUserPhoto_medium';
break;
case 'mini':
$_data = IPSLib::scaleImage( array( 'max_height' => 25, 'max_width' => 25, 'cur_width' => $member['pp_thumb_width'], 'cur_height' => $member['pp_thumb_height'] ) );
$src = $member['pp_thumb_photo'];
$w = $_data['img_width'];
$h = $_data['img_height'];
$cls = 'ipsUserPhoto_mini';
break;
case 'inset':
$_data = IPSLib::scaleImage( array( 'max_height' => 25, 'max_width' => 25, 'cur_width' => $member['pp_thumb_width'], 'cur_height' => $member['pp_thumb_height'] ) );
$src = $member['pp_thumb_photo'];
$w = $_data['img_width'];
$h = $_data['img_height'];
$cls = 'ipsUserPhoto_inset';
break;
case 'icon':
$_data = IPSLib::scaleImage( array( 'max_height' => 16, 'max_width' => 16, 'cur_width' => $member['pp_thumb_width'], 'cur_height' => $member['pp_thumb_height'] ) );
$src = $member['pp_thumb_photo'];
$w = $_data['img_width'];
$h = $_data['img_height'];
$cls = 'ipsUserPhoto_icon';
break;
}
$classes = $noBorder ? '' : "ipsUserPhoto {$cls}";
return "<img src='" . $src . $rnd . "' width='" . $w . "' height='" . $h . "' class='" . $classes . "' />";
}
Liczby to wymiary wg rozmiarów.