Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter trouille2

    (@trouille2)

    Ok I figure it out, but it would be great to have this option in the settings.
    So, what I did : in page facebook.php in the plugin folder, on line 596, in place of

    $img = "<img src='". htmlentities($item['picture']) ."' class='thumbnail alignleft' />\n";

    I put this :

    $imgURL = htmlentities($item['picture']);
    $biggerImg = substr_replace($imgURL,"n",-5,1);
    $img = "<img src='". htmlentities($biggerImg) ."' class='thumbnail alignleft' />\n";

    This way I got the original sized images which are much more visual.

    Hey,

    Appreciate you posting this solution but after using it in my plugin nothing happened I still have the same size of image, can you explain what you get in your side please?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Bigger thumbnail possible?’ is closed to new replies.