I have two content type , A and B, they has several same fields, and can generate B from A.
what I want is:
click a button in a node of A, then it can open the B node creation page, then it can auto input the value for the same fields from A node.
and user can input the specific fields of B. how to get this, any module can be used for it?

Comments

VM’s picture

the short answer to your question is ... no.

mmjvb’s picture

in https://www.drupal.org/project/content_type_clone when it doesn't meet your requirements.

pixelsweatshop’s picture

You can use rules and the rules link module. https://www.drupal.org/project/rules_link

Build a rule that creates a new node and then sets the data value on the new node.

jeasphy’s picture

I will follow your suggestion and try, thanks