Is it possible to use this multi img upload function in comment?
Much thx
]]>Hi
i am using this for give the extra features to my custom post type. this is not showing in my custom post type admin page. And also how do i show the images in my front end
]]>As plugin is compatible up to word press version 3.9.2,there might be issue while uploading images in WP version more than 3.9.2.
Kindly update function window.send_to_editor in JS file which has been updated in new version of wordpress.
replace
fileurl = jQuery(‘img’,html).attr(‘src’); on line 30 to,
fileurl = jQuery(html).attr(“src”);
Thank you..!!!
]]>The uploaded images in custom post type does not get attached to it. parent_post is 0 why?
]]>Had to update multi-image-upload.php – line 152
Old code:
// Validate user input.
$posted_images = $_POST['miu_images'];
$miu_images = array();
foreach ($posted_images as $image_url)
{
if (!empty($image_url))
$miu_images[] = esc_url_raw($image_url);
}
New code:
// Validate user input.
$posted_images = $_POST['miu_images'];
$miu_images = array();
if(!empty($posted_images)) {
foreach ($posted_images as $image_url)
{
if (!empty($image_url))
$miu_images[] = esc_url_raw($image_url);
}
}
]]>
hi,
i am getting internal server error when i activate the plug in and then try to add new post. any solutions?
I’ve been searching for a plugin like this for quite some time! I’ve tried with and without pointing to my custom post as well as on WP 3.7 and 3.8, still nothing saves.
Any thoughts?
]]>Plugin conflicts with default uploader comes with wordpress editor.
When installed,uploader is not able insert images to wordpress editor. Image url directly goes to plugin image url textbox.
Thanks!
]]>I’ve installed the plugin and it seems to work great. Very nice implementation!!
However I’m getting a PHP error in the footer of the admin on the posts / pages that I’m editing that use the plugin. I’m using WordPress 3.8 so this may be related to it… here is the error:
Warning: call_user_func_array() expects parameter 1 to be a valid callback, class ‘Multi_Image_Uploader’ does not have a method ‘admin_print_footer_scripts’ in /nfs/c06/h06/mnt/156802/domains/granery.newsitedemos.com/html/wp-includes/plugin.php on line 429
Thanks for your help in advance!
]]>Hi, I’m new to using wordpress, as well as using php.
I installed this plugin successfully (in the admin part I can select multiple images), however, I can’t get them to show up in the website.
In the template, I included <?php $images = miu_get_images($post_id); ?>
, which does nothing (I checked the code, it writes nothing).
Then I thought maybe $post_id
has to be set (since it has no value when I echo it), so I added <?php $postid = url_to_postid( $url ); ?>
.
But still no luck. Probably it’s something very obvious which I missed, but I am stuck. Can somebody please give me a little push in the right direction?
By the way, the site runs on my localhost.
]]>Does this plugin add a meta box to the posts/pages editor for an upload list? Where are the images stored?
]]>