Hi,
In my site I have a area only for registered members with userrole subscriber. Now I will give them the possibility to upload files. With the Plugin “members” I can add the permissions to Upload files but even now only I as an admin can upload files with this Plugin!
Can anyone help me? Anyone who used it for subscriber?
Hi,
As you have mentioned that after the images are uploaded, we can see the hidden input using firebug with the name=”wp_multi_file_uploader_’+fileCount
I am unable to see the hidden input type though. Since my shortcode is inside another div instead of direct form, I changed the fineuploader-execute.js accordingly so that it searches for the parent div instead of the form. Still it is not working.
Can you please help me with this?
Regards
https://www.ads-software.com/plugins/wp-multi-file-uploader/
]]>Hy, I added the plugin to my site and it works well, but my site is multilingual. For translation I’m using polylang plugin, and the problem is that:
I need to set the text on the button as following: <?php echo __('Upload File(s)'); ?>
to make it translatable to polylang from the .mo file, but I don’t know where to find the string where I can insert the code instead of the current title.
Can anyone help? ?? Thank you!
https://www.ads-software.com/plugins/wp-multi-file-uploader/
]]>Hiya, im trying to find a form i could use to add just one simple field,
all i need is “Your name” field.
Is there a form you know that i could add to a page to get this working ?
I cant seem to find a form that i can manually add the shortcode.
maybe im doing something wrong ??
Thanks
https://www.ads-software.com/plugins/wp-multi-file-uploader/
]]>Hello,
I have been attempting location.reload(); after the file uploads complete without success. Any ideas on how I can refresh the page that the form exists on after a successful upload?
Any help is greatly appreciated!
https://www.ads-software.com/plugins/wp-multi-file-uploader/
]]>It is really Very Nice Plugin.
I have come across one issue which was not allowing me to upload the file in my wordpress site. Currently, The plugin treat .jpg and .JPG as different format. By default it is allowing to upload .jpg files, if the file is having extension in capital later(for example: Test.JPG) it is rejecting the upload and treating as not supported format.
We can resolve the issue by updating following fix:
File: class-wpmfu-file-upload-handler.php
Function: check_file_type
Suggestion: add strtolower while comparing file extension.
Old Line:
if ( in_array( $filetype['ext'], $wpmfu_post_options['allowed_mime_types'] ) )
New Suggested Change:
if ( in_array( strtolower($filetype['ext']), $wpmfu_post_options['allowed_mime_types'] ) )
https://www.ads-software.com/plugins/wp-multi-file-uploader/
]]>Is there an easy way to limit the number of files a user can upload in one form submission? I realize that they could repeatedly visit the form and upload over and over but I’d like to keep them from dropping in 50 files at a time.
https://www.ads-software.com/plugins/wp-multi-file-uploader/
]]>The hidden fields wp_multi_file_uploader_[NUMBER]
that are supposed to generate after the files have uploaded are not appearing in my forms. I inspect the form after a successful media upload and there are no new input fields. I also tried print_r($_POST)
and the only thing the plugin is posting is [file] =>
with no data in it.
https://www.ads-software.com/plugins/wp-multi-file-uploader/
]]>I have the multi file uploader working fine on my page. Everything works perfectly but when I try to AJAX the form into another page only the wrapping
https://www.ads-software.com/plugins/wp-multi-file-uploader/
]]>Hellow. Can you help me.
How i can read attach id after file upload with plugin?
I need it to attach files to new post automaticly at post creation.
https://www.ads-software.com/plugins/wp-multi-file-uploader/
]]>I entered the following in my custom content template:
<?php echo wp_multi_file_uploader(); ?>
I cannot see anything in the page. In Firebug I see the following content. What am I missing?:
<ul id=”wp_multi_file_uploader” class=”unstyled” data-ajaxurl=”https://127.0.0.1/wordpress/wp-admin/admin-ajax.php” data-postid=”564″ data-maxsize=”64″ data-mimetypes=”jpg,jpeg,jpe,gif,png,bmp,tif,tiff,ico,asf,asx,wmv,wmx,wm,avi,divx,flv,mov,qt,mpeg,mpg,mpe,mp4,m4v,ogv,webm,mkv,txt,asc,c,cc,h,csv,tsv,ics,rtx,css,htm,html,vtt,mp3,m4a,m4b,ra,ram,wav,ogg,oga,mid,midi,wma,wax,mka,rtf,js,pdf,class,tar,zip,gz,gzip,rar,7z,doc,pot,pps,ppt,wri,xla,xls,xlt,xlw,mdb,mpp,docx,docm,dotx,dotm,xlsx,xlsm,xlsb,xltx,xltm,xlam,pptx,pptm,ppsx,ppsm,potx,potm,ppam,sldx,sldm,onetoc,onetoc2,onetmp,onepkg,odt,odp,ods,odg,odc,odb,odf,wp,wpd,key,numbers,pages” data-filecount=”1″>
https://www.ads-software.com/plugins/wp-multi-file-uploader/
]]>The filesize is not visible in the edit media.
I would like to use the plugin “Zip Attachments”, but this not work whit the file uploaded whit “WP Multi File Uploader”.
I have attached the parent to the uploaded files, but it doest’t work.
After a long search, and observed the differences of uploaded files with or without the plugin, I discovered that those uploaded without plug in, i can display the file size in the edit media page.
https://www.ads-software.com/plugins/wp-multi-file-uploader/
]]>Is there a way to do this?
When I insert more than 1 instance of the shortcode, I still only get 1 upload button.
https://www.ads-software.com/plugins/wp-multi-file-uploader/
]]>I put <?php wp_multi_file_uploader(); ?>
in comments.php
it works, photos have uploaded!
But how to display the images on page ?_?
https://www.ads-software.com/plugins/wp-multi-file-uploader/
]]>file upload successfully and image display in uploads folder but not display in details page, i want to image thumb display in details page
and when click this thumb enlarge image.
i use this code in my theme
—————————-
<?php wp_multi_file_uploader(array(
‘allowed_mime_types’ => ‘jpg,png,gif’, // accepts .jpg, .png, .gif file types
‘max_file_size’ => ‘5’ // 5mb
)); ?>
I am waiting your replay
https://www.ads-software.com/plugins/wp-multi-file-uploader/
]]>My customers need to upload RAW images, mostly in CR2 or NEF format, maybe a few others. How do I add support for more MIME types?
https://www.ads-software.com/plugins/wp-multi-file-uploader/
]]>Hi this is the best upload plugin I’ve tried. It is simple and very fast. Is there a way to automatically allow new uploads to display in the gallery? I just want one gallery. When a user upload a new image it automatically displays on the page?
Thanks!
https://www.ads-software.com/plugins/wp-multi-file-uploader/
]]>Hi
Thanks for a nice plugin. But it is not showing when the Easy Image Display plugin is in the sidebar.
I have tested it in different themes, the same result.
Regards
Migo
https://www.ads-software.com/plugins/wp-multi-file-uploader/
]]>Upload failed in files .jpg
see link
https://imageshack.com/i/g9r214j
https://www.ads-software.com/plugins/wp-multi-file-uploader/
]]>Hi,
I registered today and first of all i wanted to say that this is a great plugin. Nice work.
Second i wanted to ask if it is possible to get an E-Mailnotification after somebody has uploaded a file. I have only a limited amount of Webspace and i wouldn′t notice if somebody uploads his files.
Thanks in advance
https://www.ads-software.com/plugins/wp-multi-file-uploader/
]]>Where would I add a remove link (after upload has completed)?
This might be a nice feature to add the to next revision.
Also making the default button style-able would be nice (or at least allowing designed to know the style class names.)
https://www.ads-software.com/plugins/wp-multi-file-uploader/
]]>I want to let my website user to upload files in a form and then send them attached to email. HOwever I cant find way to get links to those files. I used this code
$attachment_links = array();
$attachments = get_posts(array( 'post_type' => 'attachment',
'numberposts' => -1,
'post_status' =>'any',
'post_parent' => $post->ID
));
if ($attachments) {
foreach ( $attachments as $attachment ) {
echo apply_filters( 'the_title' , $attachment->post_title );
$attachment_links[$attachment->ID]=the_attachment_link( $attachment->ID , true );
}
}
wp_mail( $emailTo, $subject, $body, $headers, $attachment_links );
But that doesnt work. Actually the file being uploaded do not get attached to the post.
https://www.ads-software.com/plugins/wp-multi-file-uploader/
]]>Hi,
My case might be a bit different. I am using your plugin in the same page that I have contact form 7. The moment I upload the file it gets uploaded. I mean I just have to select the files and it’s uploaded. I don’t have to click on submit or anything, it just gets uploaded automatically the moment file is selected.
I am not sure if I am doing something wrong.
https://www.ads-software.com/plugins/wp-multi-file-uploader/
]]>Hey,
first: great plugin. Really cool.
Is it possible, that i insert the template tag somewhere in the loop, an when images are uploaded, that they will be assigned to that post?
I have a familypage where from time to time fotos are posted and i want to offer an oportunity to fill that gallery from the frontend.
———
Another feature request would be, that the display name of the uploading person, will appear as the caption…
https://www.ads-software.com/plugins/wp-multi-file-uploader/
]]>Hi there!
First of all: great plugin!
Is it possible to disable the input to the media library? And/or disable the resize of pics?
I just need a plain upload to collect pictures of other people and download them, but like this my WP makes 5 copies in different sizes and adds the pictures to the media library… It creates all the sizes needed for my theme I think, and it makes my library get really full.
Thanks for the help in advance!
Best regards,
Sebastian
https://www.ads-software.com/plugins/wp-multi-file-uploader/
]]>Having an odd problem… when I upload a photo with the file extension .JPG it fails. But when I send the exact same photo with the file extension in lower-case, i.e. .jpg, it works!
Can you reproduce?
https://www.ads-software.com/plugins/wp-multi-file-uploader/
]]>Hello, I am uploading pictures using WP Multi File Uploader and it is working great when it comes to uploading files.
The problem is, is that the message returned is “Upload Failed”, however the files is definitely uploaded, and in my media library.
How can I change this, and stop it from displaying upload failed.
Thanks.
https://www.ads-software.com/plugins/wp-multi-file-uploader/
]]>The plugin returns an invalid JSON response when trying to upload data.
https://www.ads-software.com/plugins/wp-multi-file-uploader/
]]>Hi i’m a newbie! I need to change words “Upload File”. Where can i do it?
And second question :
How can I change size upload files? (i need the size=15 mB)
Thanks a lot!
https://www.ads-software.com/plugins/wp-multi-file-uploader/
]]>Hi,
I’d like my users to be able to upload multiple files at once (whole albums so 40-50 photos), rather than repeatedly having to select each file. Is this possible?
https://www.ads-software.com/plugins/wp-multi-file-uploader/
]]>