haha ?? that’s funny.
wp-content/plugins/instagram-for-wordpress/wpinstagram.css:
ul.wpinstagram li{
display: none;
}
ul.wpinstagram li:first-child {
display: block;
}
That means, it displays only one image. Just remove these lines and everthing will work out just fine
And you may want to remove width and height limitation, because it’s not flexible for custom sizes:
wp-content/plugins/instagram-for-wordpress/wpinstagram.php (line 141):
from
echo '<ul class="wpinstagram" style="width: '.$imagesize.'px; height: '.$imagesize.'px;">';
to
echo '<ul class="wpinstagram">';