Miscellaneous

How can I move items from one category to another?

Scenario:
"I want to move some items from one category to another."

Solution:

Basic method
Simply click on the "Edit" link for that item and change its category. You can only change it to a category of a blog where you are on the blog team.

Bulk method
If you have access to the MySQL database of your Nucleus installation, you can run the following query:

UPDATE nucleus_item SET icat=X WHERE icat=Y;

to move all items in category Y to category X. If you are moving items to a category across different blogs, you will need to run this query instead:

UPDATE nucleus_item SET icat=X, iblog=Z WHERE icat=Y;

to move all items in category Y to category X in blog Y.

Original forum thread (thanks, digilee & ftruscot!):
http://forum.nucleuscms.org/viewtopic.php?t=14735

section: Miscellaneous | submitted by Leng on 2006.Dec.25 | 2197 views

item rate
Total votes: 4 - Rating: 5.50

Please tell us how useful this answer was to you (0 = useless, 10 = very very helpful):

10