Viewing 15 replies - 1 through 15 (of 19 total)
  • I have the same problem. I can see you solved it. How?

    I have the same issue, I think it is something to do with 3.4 ??

    I had the same issue, stuck on 1 image, I randomly installed this plugin for another instagram plugin and it started working again! It adds Highslide for image enlargements, and creates slideshows of attached images using the Cycle plugin for jQuery.

    https://www.ads-software.com/extend/plugins/highcycle/

    I’m having the same issue.. Its starts working but after a while it stops. Tried several installations, different hosts and everything. One of my themes seems to work better with it (arras) the others jam within a time frame.

    Good to know you are working on it, this is by far the best instagram plugin and I use it a lot! If its possible I would like to make a donation to help its development. (I can’t afford much, but at least might buy you a lunch or something =))

    stopped working for me too on 2 of the sites i use it on. just doesn’t show up. pretty sure it was the wp 3.4 update. any help would be great!

    I am having the same problem and the highcycle plugin didn’t work for me.

    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">';

    I was wrong with my last post. I think problem is about other javascript codes. Just check your browser console if any JS code gives error.

    I hope this helps

    Hi,
    I just installed the plugin, and only 1 image is showing.
    None of the previous tips worked.

    Did someone find a solution for this??
    I’m using the latest version of the plugin.

    Thanks!

    I had the same issue (only one Instagram picture was shown), and I resolved with these two simple lines in my CSS file:

    .wpinstagram { height: auto !important; width: 100% !important; }
    .wpinstagram li { display: inline-block !important; }

    I hope that helps!

    Change the CSS does not work, because the error is not in the styles. It’s on the way to invoke the cycle function and its assignment to the element you want to animate.

    They should change this:

    jQuery(document).ready(function($) {
    	$("#<?php echo $this->id; ?> ul").cycle({fx: "fade", timeout: <?php echo $cycletimeout; ?>});
    });

    By this:

    jQuery(document).ready(function($) {
    	$(".wpinstagram").cycle({fx: "fade", timeout: <?php echo $cycletimeout; ?>});
    });

    Oh, now I can see your point, jimolina.

    But what I was trying to do was to show more than one picture at the same time, like a small gallery. I didn’t want to show one picture at a time with the cycle / fade animation.

    Anyway, I think both solutions are fine for their purposes ??

    Jeje that is right bsfajardo, if you dont want animation, with only change the CSS is enough.

    @bsfajardo Would you be able to tell me where in the code did you add those two lines to? Trying to resolve this issue but i cant find the lines im supposed to replace with the ones youve fixed.

    thanks.

    hopefully you can remember after 4 months lol

Viewing 15 replies - 1 through 15 (of 19 total)
  • The topic ‘[Plugin: Instagram for WordPress] Only 1 instagram photo is displaying.’ is closed to new replies.