bulk product mover badly needed for catalog management

Post feature requests to this forum and a pre-configured poll will automatically be created for you.
Post Reply

How important is this enhancement to you?

It's a critical enhancement that I must have.
14
88%
It's an important enhancement but others are more critical.
1
6%
I'd like to have it but it's not that important.
1
6%
I'd never use this feature.
0
No votes
 
Total votes: 16

User avatar
igavemybest
Captain (CAPT)
Captain (CAPT)
Posts: 388
Joined: Sun Apr 06, 2008 5:47 pm

Easily move many items to a new category

Post by igavemybest » Thu Jul 24, 2008 7:52 pm

Is there any way to add a check box to all items in the catalog, and move all checked items on a page to a new category? I cant seem to get it to work for me.

Robbie@FireFold
Commodore (COMO)
Commodore (COMO)
Posts: 433
Joined: Wed May 28, 2008 9:42 am
Location: Concord, NC
Contact:

Re: Easily move many items to a new category

Post by Robbie@FireFold » Thu Jul 24, 2008 9:04 pm

I was unable to find this in able. A small missing feature - nice when creating/redoing categories.

In my current software there's an option when you Edit the category called 'Product Selector.' Clicking that takes you to a search box - search by SKU and click a check box beside each item you wish to add. When all you require are checked - click add.

This is something my team and I could REALLY use right now. We have 3700 SKU's. Down to 1600 left to move.
Robbie Hodge
General Manager
Robbie@FireFold.com
http://www.FireFold.com

User avatar
igavemybest
Captain (CAPT)
Captain (CAPT)
Posts: 388
Joined: Sun Apr 06, 2008 5:47 pm

Re: Easily move many items to a new category

Post by igavemybest » Thu Jul 24, 2008 9:15 pm

Yeah, it is a HUGE missing feature.

User avatar
igavemybest
Captain (CAPT)
Captain (CAPT)
Posts: 388
Joined: Sun Apr 06, 2008 5:47 pm

Re: Easily move many items to a new category

Post by igavemybest » Thu Jul 24, 2008 10:25 pm

Does anyone have any suggestions for this?

User avatar
Naveed
Rear Admiral (RADM)
Rear Admiral (RADM)
Posts: 611
Joined: Thu Apr 03, 2008 4:48 am

Re: Easily move many items to a new category

Post by Naveed » Fri Jul 25, 2008 9:48 am

Yes, it is a missing feature...
Going to post a new feature request..

User avatar
nickc
Captain (CAPT)
Captain (CAPT)
Posts: 276
Joined: Thu Nov 29, 2007 3:48 pm

Re: Easily move many items to a new category

Post by nickc » Fri Jul 25, 2008 11:17 am

You can run update queries against data in the ac_CatalogNodes table.
CAVEAT - I have not tested any of this, so practice on a test db first.

Code: Select all

-- move all products in category @current to category @new

declare @current int
declare @new int
set @current = 0 -- change to Category number you are moving from
set @new = 0 -- change to Category number you are moving to

update ac_CatalogNodes
set CategoryId = @new
where CategoryId = @current and CatalogNodeTypeId = 1
and CatalogNodeId not in
( select CatalogNodeId from ac_CatalogNodes where CategoryId = @new and CatalogNodeTypeId = 1 )
Note the exclusion of moving products already in the target category - you'd have to go back and clean those up later.

User avatar
AbleMods
Master Yoda
Master Yoda
Posts: 5170
Joined: Wed Sep 26, 2007 5:47 am
Location: Fort Myers, Florida USA

bulk product mover badly needed for catalog management

Post by AbleMods » Sat Oct 11, 2008 5:59 pm

Larger store catalogs like mine are a complete bear to move products around between categories. Each one has to be done one-at-a-time and there are only so many available teenagers in my neighborhood willing to earn that coveted $10/hour pay rate.

I need a checkbox on the Product Catalog page to work just like how order summary works. I can select multiple products, then use a dropdown to choose what category to move those products into.

Keeping 20,000 products in the right categories is tough the way it is now.
Joe Payne
AbleCommerce Custom Programming and Modules http://www.AbleMods.com/
AbleCommerce Hosting http://www.AbleModsHosting.com/
Precise Fishing and Hunting Time Tables http://www.Solunar.com

User avatar
Naveed
Rear Admiral (RADM)
Rear Admiral (RADM)
Posts: 611
Joined: Thu Apr 03, 2008 4:48 am

Re: bulk product mover badly needed for catalog management

Post by Naveed » Fri Oct 24, 2008 12:18 pm

DataPort can be used for this purpose. Give a try to product CSV Import/Export feature.

Post Reply