Hia
I am using the following in a custom module to customise the form on the node/add/baby page for my BABY content type, however i want to make some slight modifications to this page when its the node/nid/edit page for the baby content type. is this possible?
<code>
<?php
function concept_theme() {
return array(
'baby_node_form' => array(
'arguments' => array(
'form' => NULL,
),
'template' => 'templates/baby-node-form',
'render element' => 'form',
),
);
}
?>
</code>
thank u