Hi,
for fix issue:-
go to wp-content/plugins/facebookall/helpers/facebookall_process.php
find the code
$fbdata[‘thumbnail’] = “https://graph.facebook.com/” . $fbdata[‘id’] . “/picture”;
replace it with:-
$fbdata[‘thumbnail’] = “https://graph.facebook.com/” . $fbdata[‘id’] . “/picture?type=large”;
or set height width:-
http://developers.facebook.com/docs/reference/api/using-pictures/
Thanks
Hi,
Thank you for helping. Nothing changed unfortunately. When I check inspect the avatar link it is still referring to 50×50 px image.
Maybe I am calling the avatar in the wrong way? This is the code I use:
if ( is_user_logged_in() ) {
if ($showavatar) { global $current_user; get_currentuserinfo(); echo get_avatar( $current_user->ID, 128 );}
}
?>
Hi please
use $size as per your requirement:-
for more info follow:-
http://codex.wordpress.org/Function_Reference/get_avatar
Thanks
Hi There,
I tried below but this did not work for me as well.
find the code
$fbdata[‘thumbnail’] = “https://graph.facebook.com/” . $fbdata[‘id’] . “/picture”;
replace it with:-
$fbdata[‘thumbnail’] = “https://graph.facebook.com/” . $fbdata[‘id’] . “/picture?type=large”;
I did not get rest of the methods that you guys have talked, Can u please help/suggest how to achieve better image quality.
Thanks.