php - Limiting validation to the create page not the edit page -
what best way limit custom validation check add page , not edit page?
you use arg() function check you're on /node/add/... page. try changing first line inside hook_form_alter implementation read...
if($form_id === 'external_favourite_node_form' && arg(1) == 'add') {
Comments
Post a Comment