Forum Replies Created
-
Author
-
massreport
Participant@abe I looked into the issue with my host and this is what he is telling me.
As for the avatar issue, I noticed that it’s trying to use this URL for the image: https://graph.facebook.com/2147483647/picture?width=580&height=580
I found that this was set in the wp_usermeta table, there are 5 users with pictures from graph.facebook.com and none of them seem to work. I checked in the files to see what plugin or theme function was creating these and it looks like it’s part of the kleo theme:
themes/kleo/kleo-framework/lib/function-facebook-login.php
201: update_user_meta($user_ID, ‘kleo_fb_picture’, ‘https://graph.facebook.com/’ . $id . ‘/picture’);
213: update_user_meta($user_ID, ‘kleo_fb_picture’, ‘https://graph.facebook.com/’ . (int) $FB_userdata[‘id’] . ‘/picture’);
268: $pic = get_user_meta($id, ‘kleo_fb_picture’, true);
281: $pic = get_user_meta($id, ‘kleo_fb_picture’, true);
292: $pic = get_user_meta($params[‘item_id’], ‘kleo_fb_picture’, true);
It doesn’t look like it’s using a valid format to get pictures from Facebook, so you may want to check with the theme developer on this.massreport
Participantmassreport
ParticipantEveryone who signed up on facebook does not have their facebook picture as their avatar after the latest theme install. That is what I believe happened. Before, I was able to see the facebook avatars of my users. @abe
massreport
ParticipantI looked into the issue with my host and this is what he is telling me.
As for the avatar issue, I noticed that it’s trying to use this URL for the image: https://graph.facebook.com/2147483647/picture?width=580&height=580
I found that this was set in the wp_usermeta table, there are 5 users with pictures from graph.facebook.com and none of them seem to work. I checked in the files to see what plugin or theme function was creating these and it looks like it’s part of the kleo theme:
themes/kleo/kleo-framework/lib/function-facebook-login.php
201: update_user_meta($user_ID, ‘kleo_fb_picture’, ‘https://graph.facebook.com/’ . $id . ‘/picture’);
213: update_user_meta($user_ID, ‘kleo_fb_picture’, ‘https://graph.facebook.com/’ . (int) $FB_userdata[‘id’] . ‘/picture’);
268: $pic = get_user_meta($id, ‘kleo_fb_picture’, true);
281: $pic = get_user_meta($id, ‘kleo_fb_picture’, true);
292: $pic = get_user_meta($params[‘item_id’], ‘kleo_fb_picture’, true);
It doesn’t look like it’s using a valid format to get pictures from Facebook, so you may want to check with the theme developer on this.massreport
Participant@catalin Private
http://www.massreport.com
username: raju2836
password: @Rajeshverma88!@massreport
ParticipantI am having the same issue. User avatar and group avatars are not showing. @catalin
massreport
ParticipantI just need to adjust the size on specific browsers I guess. This is my website if you want to see what I mean: mytv.massreport.com
-
AuthorPosts