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
![]()
Total votes: 4 - Rating: 5.50