• since the development of the plugin seems to be dicontinued we could make a list of all incompabilities and try to fix them step by step in the community… anyone interested?

    first issue i noticed was the leck of compability with custom post types – the meta box didn’t appear. here’s my fix, add after line 125:

    $post_types = get_post_types(array('_builtin' => false));
      foreach ($post_types  as $post_type ) {
        add_meta_box('fastinsert', 'Faster Image Insert', 'fast_insert_form', $post_type, 'normal', 'high');
      }

    inserting image shortcode to post content seems to be broken too, guess it’s just a question of JS…

    http://wordpress.org/extend/plugins/faster-image-insert/

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi

    You obviously know how this plug-in works, I really find it useful but have a question.

    1. can you show me how to change the spacing between images
    2. can you let me know if you manage to acheive WP 3 compatibility

    Thanks

    Graham

    Thread Starter skarck

    (@skarck)

    the short-code issue i mentioned was caused by a plugin conflict with custom field template plugin…
    so if you insert the code above to enable custom post type support everything’s fine in 3.0, isn’t it?

    Hi Sharck

    Thanks for picking up the baton and getting this great plugin developed further. I’m trying your patch for custom post types, but it’s not showing up. I have a premium theme that uses custom post types labelled “Portfolio”. Would I need to adjust the plugin code to recognize the portfolio as a custom post type, or do I need to adjust the theme to support the plugin?

    Thanks
    Len

    The plugin was updated today, works with custom post types. You have to manually add the post type name in the settings box.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘[Plugin: Faster Image Insert] community update to make plugin work in 3.0’ is closed to new replies.