Open GoogleCodeExporter opened 8 years ago
Hi!
You can do this by changing the file upload-process-form.php
Take a look at line 605
//$('#upload_continue').click();
If you remove the // then jQuery will simulate a click to that button. This
means that the page needs to load for a second before this works, since this
page is a required step.
Another thing you could do is change that line so that it only works when the
uploader is a client.
Replace it with
<?php
if ($current_level == 0) {
?>
$('#upload_continue').click();
<?php
}
?>
That should do the trick for you. I will try to include an option in the future
for this.
Original comment by i...@subwaydesign.com.ar
on 5 Jun 2013 at 9:28
PERFECT. Thanks!
Original comment by mikerobe...@gmail.com
on 5 Jun 2013 at 9:51
Original issue reported on code.google.com by
mikerobe...@gmail.com
on 5 Jun 2013 at 4:53