Im trying to get drupal_get_form('ccknode_node_form') to work, but nothing prints.
I've tried for example drupal_get_form('user_register'), and that works.
Im sure its very simple problem, but i really need som help with this.
Thanks
/Anders
Im trying to get drupal_get_form('ccknode_node_form') to work, but nothing prints.
I've tried for example drupal_get_form('user_register'), and that works.
Im sure its very simple problem, but i really need som help with this.
Thanks
/Anders
The node_form
is located in node.pages.inc
which is what you are missing. If you add
module_load_include('inc', 'node', 'node.pages');
that should fix it.
Hi andersandersson666,
Did you ever get this sorted? I'm currently having the same problem