Viewing 2 replies - 1 through 2 (of 2 total)
  • I have the same issue! From a migrated static site to wordpress.

    I’ve modified the plugin to work that way. I’ll submit my mod to the author.

    Meanwhile, you can enable internal importing by locating the line

    if ($s != substr($uri, 0, strlen($s))

    (it’s part of the function externimg_get_img_tags)

    and replace it with

    $internaluploads = wp_upload_dir();
    if (stripos($uri,$internaluploads[‘baseurl’])===false || $s != substr($uri, 0, strlen($s))

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: Add Linked Images To Gallery] nice plugin, how can we include internal images as well?’ is closed to new replies.