This probably isn't quite the right solution, but could you look at adapting something like this?
http://jqueryui.com/demos/droppable/photo-manager.html
Otherwise there are no doubt other image managers out there which offer further fuctionality.
http://jqueryui.com/demos/droppable/photo-manager.html
Otherwise there are no doubt other image managers out there which offer further fuctionality.
This will replace the stupid image upload system: http://forum.opencart.com/viewtopic.php ... 23#p150023
I tried it, 100% working, I can even upload multiple image at once. And has option select the MAIN Product Image.
Thanks to GSK!
I tried it, 100% working, I can even upload multiple image at once. And has option select the MAIN Product Image.
Thanks to GSK!
Hi!
This might help.
ImageManager+ for OpenCart
Enhanced Image Manager/ File Manager for OpenCart
- Bigger default view - The Boy Got Bigger!
- Upload+ - Multiple Files Upload Painlessly!
- Remembers the folder tree and last selected folder (i.e. last state of folder tree) - Total Recall!
- Instant Search (No AJAX Load Times) - Zero wait!
- Detects folder deletion and displays a confirmation/ warning dialog. - Never lose that folder again!
- Expand or Collapse the tree by One Click - Yes, there it is!
- Maximize IM+ for greater accessibility - Bigger the better!
- Instant List View/ Thumb View/ Text View switching - When you have a lot of files!
- One/ Single Click Button to update/ insert image/ file (handy for iPad/ Tablets etc) - Tap Tap Tap!
- All default features of the Original Image Manager also exist. - Keeping faithful to the original!
- Its Free! - Beat This!
Get it here:
http://www.opencart.com/index.php?route ... on_id=3601
Please do not forget to vote and comment.
Happy OpenCarting!
This might help.
ImageManager+ for OpenCart
Enhanced Image Manager/ File Manager for OpenCart
- Bigger default view - The Boy Got Bigger!
- Upload+ - Multiple Files Upload Painlessly!
- Remembers the folder tree and last selected folder (i.e. last state of folder tree) - Total Recall!
- Instant Search (No AJAX Load Times) - Zero wait!
- Detects folder deletion and displays a confirmation/ warning dialog. - Never lose that folder again!
- Expand or Collapse the tree by One Click - Yes, there it is!
- Maximize IM+ for greater accessibility - Bigger the better!
- Instant List View/ Thumb View/ Text View switching - When you have a lot of files!
- One/ Single Click Button to update/ insert image/ file (handy for iPad/ Tablets etc) - Tap Tap Tap!
- All default features of the Original Image Manager also exist. - Keeping faithful to the original!
- Its Free! - Beat This!
Get it here:
http://www.opencart.com/index.php?route ... on_id=3601
Please do not forget to vote and comment.
Happy OpenCarting!
Lets' forge our present as past for the future. - Kay Lohn
++++++++++++++
ANNOUNCEMENT
++++++++++++++
INTRODUCING:
Batch+ for ImageManager+
Learn more: http://youtu.be/dDprFR8fsoo
Happy OpenCarting!
ANNOUNCEMENT
++++++++++++++
INTRODUCING:
Batch+ for ImageManager+
Learn more: http://youtu.be/dDprFR8fsoo
Happy OpenCarting!
Lets' forge our present as past for the future. - Kay Lohn
+++++++++++++++
ANNOUNCEMENT
+++++++++++++++
The wait and mystery is over!
ImageManager+ Woah! Edition RELEASED for OC v1.5.2.x
http://www.opencart.com/index.php?route ... on_id=3601
NEW FEATURES
- On folder delete the folder previous to the deleted one is selected, no more jumping to top.
- Displays number of files found in folder on folder select.
- Long filenames are truncated to 20 characters (so it doesn't mess up the List/Text views, shows a small red << where truncated. Actual filenames are untouched and can be viewed by hovering over the image.
- All features from IM+ Oomph for OCv1.5.1.x are tested and working.
Download updated. Please check out the documentation for updates and information.
Please do not forget to vote and comment.
As for people who were interested in paying for IM+, they can donate instead.
Happy OpenCarting!
ANNOUNCEMENT
+++++++++++++++
The wait and mystery is over!
ImageManager+ Woah! Edition RELEASED for OC v1.5.2.x
http://www.opencart.com/index.php?route ... on_id=3601
NEW FEATURES
- On folder delete the folder previous to the deleted one is selected, no more jumping to top.
- Displays number of files found in folder on folder select.
- Long filenames are truncated to 20 characters (so it doesn't mess up the List/Text views, shows a small red << where truncated. Actual filenames are untouched and can be viewed by hovering over the image.
- All features from IM+ Oomph for OCv1.5.1.x are tested and working.
Download updated. Please check out the documentation for updates and information.
Please do not forget to vote and comment.
As for people who were interested in paying for IM+, they can donate instead.

Happy OpenCarting!
Lets' forge our present as past for the future. - Kay Lohn
+++++++++++++++
ANNOUNCEMENT
+++++++++++++++
Batch+ integrated with ImageManager+ for OpenCart v1.5.5.x
PLANNED FOR RELEASE EXTENSION
The video better explains what Batch+ does:
https://www.youtube.com/watch?v=JvXeky2paeo
Briefly, Batch+ has two basic functions:
1. BatchUpload :: Upload images directly to folders and select/ add them automatically as additional product images. New folders for image upload can also be created from within Batch+ without loading up Image Manager.
2. BatchSelect :: Select multiple images from your already uploaded images (from different folders too) and select them as additional product images.
NO default feature of OpenCart is removed. Additional product images can be added via OpenCart's default 'Add Image' button and can then be browsed with ImageManager+ as well.
Happy OpenCarting!
ANNOUNCEMENT
+++++++++++++++
Batch+ integrated with ImageManager+ for OpenCart v1.5.5.x
PLANNED FOR RELEASE EXTENSION
The video better explains what Batch+ does:
https://www.youtube.com/watch?v=JvXeky2paeo
Briefly, Batch+ has two basic functions:
1. BatchUpload :: Upload images directly to folders and select/ add them automatically as additional product images. New folders for image upload can also be created from within Batch+ without loading up Image Manager.
2. BatchSelect :: Select multiple images from your already uploaded images (from different folders too) and select them as additional product images.
NO default feature of OpenCart is removed. Additional product images can be added via OpenCart's default 'Add Image' button and can then be browsed with ImageManager+ as well.
Happy OpenCarting!
Lets' forge our present as past for the future. - Kay Lohn
What I did was change the sort order so the items I just uploaded are shown first. Was a 2 second fix:
Edit admin/controller/common/filemanager.php
find
Just above it, add:
Save and done.
Now whatever folder you browse in image manager, the most recently uploaded files will be first. Saves me TONS of time.
I have 1.5.2 (but use 1.5.4's file manager file), so it should work on any version I think. Found this originally somewhere in the forums, but seems like very few people saw it, so here it is again. Don't remember who first posted it, but kudo's to whoever it was
Edit admin/controller/common/filemanager.php
find
Code: Select all
foreach ($files as $file) {
Code: Select all
// added
usort($files, create_function('$a,$b', 'return filemtime($b) - filemtime($a);'));
// end added
Now whatever folder you browse in image manager, the most recently uploaded files will be first. Saves me TONS of time.
I have 1.5.2 (but use 1.5.4's file manager file), so it should work on any version I think. Found this originally somewhere in the forums, but seems like very few people saw it, so here it is again. Don't remember who first posted it, but kudo's to whoever it was

Running Opencart v3.0.3.9 with multi-stores and the default template from https://www.labeshops.com which has links to all my stores.
I'll try immediately ... and maby I'll make this a vqmod.
Pretty useful because it is quite obvious that You have to add the last uploaded images..
BTW I have 4.923 images, just checked ... lol :-) and keeps growin'
I've only a couple of separate folders for category images etc..
Pretty useful because it is quite obvious that You have to add the last uploaded images..
BTW I have 4.923 images, just checked ... lol :-) and keeps growin'
I've only a couple of separate folders for category images etc..
Who is online
Users browsing this forum: Baidu [Spider] and 7 guests