Hi,

I have both guestbook and imagecache profile pictures module installed. Imagecache profile module makes you select different picture size for user profile and for rest of the site. I use smaller picture size for rest of the site and large for profile. Imagecache profile works will all other modules like comments etc but it doesn't change the size of guestbook picture. I think this is some kind of design issue but I am not sure. I am not a developer to comment on this.

Neotechie.

Comments

millions’s picture

anyone? I need this as well.

the2ndday’s picture

I had same problem and I just changed guestbook module file(guestbook.module)
It's not pretty but, check it out.

What I did to use imagecache on guestbook page
Replace this code (from guestbook.module)
___________________
$picture = theme('image', $picture, $alt, $alt, '', false);
___________________

with below
___________________
$picture = theme('imagecache', 'Put name of imagecache profile you made', $account->picture, $alt, $alt, '', false);
___________________

millions’s picture

That worked! Thank you! Now it's displaying it with a border that's slightly taller than the file though. Are you experiencing this also?

sun’s picture

Status: Active » Fixed

That's not the correct way to override the output. Use a theme override function instead.
See http://drupal.org/node/55126 or http://drupal.org/node/11811 for further information.

the2ndday’s picture

here is better way.
http://drupal.org/node/217276

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.