How do I customize a create content form for a certain content type. In this instance I have a CCK type, of Products but every time I create a product I use 4 fields Name, Price, Picture and dimensions.
Is there a way to slim down the create content form to just have these options? Is this what Contemplate does?
You’ll want to use the hook_form_alter hook.
In Drupal 6, I use this to hide most of the extraneous stuff in the node edit/add form.
Contemplate is for styling the node view, not the node form. I advise against it – it’s far better to use node-nodetype.tpl.php files.