Project:Node Convert
Version:6.x-1.5
Component:Code
Category:bug report
Priority:normal
Assigned:Unassigned
Status:active

Issue Summary

There should be a way to convert cck fields to the body or someother sensible default, not discard which could be a disaster.

Comments

#1

Status:active» fixed

Thanks, fixed in DEV.

#2

Status:fixed» needs work

Oops, wrong issue. Still brainstorming on this one.

#3

i also think it would be a great feature to have the node->body as an options to convert textfields to.

#4

subscribe, will be great to have predefined converst for various fields for various contenttype combinations.

#5

subscribe, I am converting from another node type to blog, and I need to move one of the fields to the body of the node

#6

Subscribing. I'm converting a node type w/body field into a CCK text field of a node type that has no body field.

#7

Status:needs work» fixed

Added basic appending and replacement of body with chosen fields to DEV. Currently tested only with simple text fields. So textfield, textarea, numbers should basically work.

#8

Status:fixed» closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

#9

converting a cck-field to the body doesn't work for me.
At the original content-type the body-field was disabled. At the new content-type the body-field is available.
The contents of a cck-field in the original content-type need to be stored into the body-field of the new content-type. But this doesn't happen.
I tried using the replace function as well as the append function.

Do you know why this is going wrong?

#10

Status:closed (fixed)» active

I'm reopening this issue because of #9 and my own reverse problem. My orgin source has a body field but in my destination one does not. It still converts but the information is put in the hidden (removed the body title in CCK) body field.

#11

Category:feature request» bug report

imho this doesn't work in any way
node content textarea->cck field; nor cck text field -> node content textarea

#12

Any news on this - need to convert a body field to a cck.

#13

@hixter
Your safest approach is:
1. exporting your nodes with node_export (as CSV).
2. Altering the CSV so that the contents of the body field are now in the column for the CCK field.
3. re-importing the nodes as the new content-type.
4. unpublishing or deleting the old nodes.

Hope this helps you.

#14

thanks garbo, i'll give that a try.