Closed (fixed)
Project:
Guestbook
Version:
5.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
18 Mar 2008 at 12:10 UTC
Updated:
2 Jun 2008 at 17:01 UTC
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
Comment #1
millions commentedanyone? I need this as well.
Comment #2
the2ndday commentedI 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);___________________
Comment #3
millions commentedThat worked! Thank you! Now it's displaying it with a border that's slightly taller than the file though. Are you experiencing this also?
Comment #4
sunThat'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.
Comment #5
the2ndday commentedhere is better way.
http://drupal.org/node/217276
Comment #6
Anonymous (not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.