Viewing 2 replies - 1 through 2 (of 2 total)
  • I had to tweak the plugin:

    dw_social_feed.php under (approx line 560)

    $item_source_text = isset($_POST[$item_type.'_item_source_text']) ? $_POST[$item_type.'_item_source_text'] : '';

    add the following:

    if (in_array($item_type, array("instagram", "flickr"))) $item_useimage = 1;

    As well it was saving Instagram photos overwriting already downloaded images, additional tweak:

    dw_social_feed_class.php

    approx line 1069

    change
    $image_name = time() . '.' . $ext;
    to
    $image_name = uniqid() . '.' . $ext;

    Hi – I’ve tried applying these tweaks and I see that the images are getting uploaded to the server but they’re still not showing up in the post – any ideas? http://americancityexpress.net/blog/category/photo-blog/

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: DW Social Feed] Problems with Instragram feed’ is closed to new replies.