Title: [Plugin: ImageDrop] refresh problem
Last modified: August 20, 2016

---

# [Plugin: ImageDrop] refresh problem

 *  Resolved [kimkimg0513](https://wordpress.org/support/users/kimkimg0513/)
 * (@kimkimg0513)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/plugin-imagedrop-refresh-problem/)
 * I have to manually refresh my page after uploading as the box shows only ‘0’.
   
   Can it be updated automatically?
 * [http://wordpress.org/extend/plugins/imagedrop/](http://wordpress.org/extend/plugins/imagedrop/)

Viewing 3 replies - 1 through 3 (of 3 total)

 *  [Grégory Viguier](https://wordpress.org/support/users/greglone/)
 * (@greglone)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/plugin-imagedrop-refresh-problem/#post-2467850)
 * I have the same problem.
    It’s a bug in the plugin. The ajax call uses the action“
   id_load_meta_box”. But this action isn’t hooked to wp_ajax, it doesn’t exists.
 * But here’s a patch:
    – open ImageDrop.php in the plugin folder, – line 95: you
   have 5 add_action( … ), add this one : `add_action( 'wp_ajax_id_load_meta_box',
   array($this, 'meta_box') );` – line 445: right after `require "pages/meta_box.
   php";`, add :
 *     ```
       if (isset($_POST['action']) && $_POST['action'] == 'id_load_meta_box')
       	die();
       ```
   
 * That’s all.
 *  Plugin Author [Rickard Andersson](https://wordpress.org/support/users/exz/)
 * (@exz)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/plugin-imagedrop-refresh-problem/#post-2467851)
 * A fix to this bug is on the way as soon as the plugin repository accepts my code.
 *  Plugin Author [montania](https://wordpress.org/support/users/montania/)
 * (@montania)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/plugin-imagedrop-refresh-problem/#post-2467859)
 * Should be fixed in the latest version

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘[Plugin: ImageDrop] refresh problem’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/imagedrop.svg)
 * [ImageDrop](https://wordpress.org/plugins/imagedrop/)
 * [Support Threads](https://wordpress.org/support/plugin/imagedrop/)
 * [Active Topics](https://wordpress.org/support/plugin/imagedrop/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/imagedrop/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/imagedrop/reviews/)

 * 3 replies
 * 4 participants
 * Last reply from: [montania](https://wordpress.org/support/users/montania/)
 * Last activity: [14 years, 2 months ago](https://wordpress.org/support/topic/plugin-imagedrop-refresh-problem/#post-2467859)
 * Status: resolved