Ability to move entries between Sections, and categories between Category Groups. #8153
-
A number of times I have ran into having to move an entry to different Structure and not being able to without manually editing the database or copy pasting. |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 2 replies
-
Here's some PHP code that can make it easier, in lieu of built-in support for moving entries between sections: http://craftcms.stackexchange.com/questions/4433/move-entry-from-one-structure-to-another-with-parenting/4467#4467 (We do hope to make it possible from the UI at some point though!) |
Beta Was this translation helpful? Give feedback.
-
@angrybrad do you happen to have a similar script for moving categories between groups in Craft 3? |
Beta Was this translation helpful? Give feedback.
-
Hello, I am in process of implementing Craft3 multi-site for our existing website in Craft3. To avoid recreating entries for the new sections, I am thinking to move entries from old section to new sections. I have both channel and structure type sections. First, I am trying to move channel entries from old sections to new by editing the MySQL db as per the recommendation is this blog: https://craftcms.stackexchange.com/questions/2021/move-entries-between-sections . So far I have just updated one entry but the entry is not showing in the new section. Below is little more details of what I did:
| 2686 | 58 | NULL | 106 | 31 | 2019-04-01 16:38:00 | NULL | NULL | 2019-04-01 16:38:48 | 2019-04-30 13:32:34 | b66e6381-221c-4733-8794-80f3fe5afc4c | | 2687 | 58 | NULL | 106 | 31 | 2019-04-30 13:47:00 | NULL | NULL | 2019-04-30 13:47:55 | 2019-04-30 13:47:55 | 4d1f5999-84ea-46a9-99b3-5c5fe2691f56 | Problem is I don’t see the updated entry in Craft dashboard at all. Could you please help me understand what did I do wrong or missing here? |
Beta Was this translation helpful? Give feedback.
-
Is there a new Version of the php Script to do that in Craft CMS 4? |
Beta Was this translation helpful? Give feedback.
-
Craft 5.3.0-beta.1 is out with the ability to move entries between sections 🎉 (#14541). We’re targeting August 6 for the GA release. If you’d like to test ahead of time, change your "craftcms/cms": "^5.3.0-beta.1", and then run |
Beta Was this translation helpful? Give feedback.
Craft 5.3.0-beta.1 is out with the ability to move entries between sections 🎉 (#14541).
We’re targeting August 6 for the GA release. If you’d like to test ahead of time, change your
craftcms/cms
requirement in composer.json to:and then run
composer update
.