I also get the following error:
Instagram did not return a 200.
It stopped working 2 days ago. I tried cleaning cache, reinstalling, nothing worked.
Maybe some changes to Instagram API cause this error.
I switched over to Instagram Feed plugin and everything works now.
-
This reply was modified 7 years, 6 months ago by wolfkain.
-
This reply was modified 7 years, 6 months ago by wolfkain.
I’ve got the same error. It stopped working 2 days ago.
This plugin has not been updated for 9 months.
Maybe some changes to Instagram API cause this error.
I switched over to Instagram Feed plugin and everything works now.
Just replace Line 34 in haiku-player.js:
$("div.haiku-text-player").jPlayer("stop");
with this code:
if($.browser.mozilla) {
$("div[id^=haiku-text-player]").each(function() {
if($(this).is(":visible")) $(this).jPlayer("stop");
})
} else {
$("div.haiku-text-player").jPlayer("stop");
}
works perfect on Firefox and doesn’t break anything on other browsers!!!