1
Answers
Product Form in a Block
I need to insert a product creation form in a block. Is there a module that can accomodate this or what function calls might help me write the necessary php to load the form?
I need to insert a product creation form in a block. Is there a module that can accomodate this or what function calls might help me write the necessary php to load the form?
You can easily do this in code by using http://api.drupal.org/drupal_get_form the drupal_get_form($form_id); If you are unsure what the form_id would be, you can use the http://drupal.org/project/devel module to turn on form_ids in the front end.
Josh