drupalfun.com
user pic override using imagecache_profile
Submitted by leelive on Mon, 11/23/2009 - 19:07
Status:
Open Question:
I've added user pics to comments using imagecache_profiles after reading albert's and Adept-Slacker's comments on this site. Thanks for the info guys! Only question is how to clean up the My Account page, which now has 2 user pictures? One user picture here would be fine, but by enabling pictures in user/settings Drupal adds one for My Account and a 2nd picture after the "View My Profile" button. Is there a way to remove the either (or both) of these?
Thanks!
Related Questions
Responses
2. Or look at user.tpl.php in
Submitted by dorien on Tue, 11/24/2009 - 16:12.
Or look at user.tpl.php in your theme and comment the line that print the user->picture. This way, it won't get loaded.


1. i've used css to hide it (i
i've used css to hide it (i mean the first one at the top of the page), i cant remember exactly whats the class for it but its something like .profile .picture or something like that, then you make it something like this:
.profile .picture {
display: none;
}
thats the easier way i think.