Error in /wp-content/plugins/erp/modules/hrm/includes/class-employee.php on line 519
Remplace Line 519:
$get_photo_id = method_exists($this, 'get_photo_id') ? $this->get_photo_id() : 0;
if ( $this->user_id && !empty($get_photo_id ) ) {
return wp_get_attachment_url( $this->photo_id );
}
return get_avatar_url( $this->user_id, [ 'size' => $size ] );
}
Remplace line 540:
$get_photo_id = method_exists($this, 'get_photo_id') ? $this->get_photo_id() : 0;
if ( $this->user_id && !empty( $get_photo_id) ) {
$image = wp_get_attachment_thumb_url( $this->photo_id );
return sprintf( '<img src="%1$s" alt="" class="avatar avatar-%2$s photo" height="auto" width="%2$s" />', $image, $size );
}