Viewing 4 replies - 1 through 4 (of 4 total)
  • I have the exact same question, I run a clothing line and we like to have feeds from various members displayed. we were able to do this with the old version and would greatly appreciate if we could get this working again.

    Thanks for the great widget though!

    DId anyone figure this out yet?

    Plugin Author INK361

    (@jbenders)

    I shall add this into the 0.5 release that will come out soon

    yay, I tried to add the widget dinamycally by adding the code as follows in a page template, so I can create a page for every hashtag I need

    $current_hashtag = get_the_title();
    $instance = array(
                  'hashtag' => $current_hashtag,
                  'cacheduration' => 0
                );
    the_widget( 'WPInstagram_Widget', $instance );

    but the following code still don’t let me display the actual result. It always displays the first hashtag requested.

    if ($imageraw) {
    	$imageraw = unserialize(base64_decode($imageraw));
    
    	if (($imageraw['created'] + $cacheduration) > time()) {
    		$images = $imageraw['data'];
    	}
    }

    I commented these lines in the file wpinstagram.php and is working now but I think is the lowest fashionable way to solve this but it works. Hope someone use this as a workaround until the 0.5 release.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘multiple feeds at once’ is closed to new replies.