Skip to content
Snippets Groups Projects
Commit 23542333 authored by Tim Steiner's avatar Tim Steiner
Browse files

Hide the "promoted to front page" and "Sticky at top of lists" options when editing nodes.

git-svn-id: file:///tmp/wdn_thm_drupal/trunk@312 20a16fea-79d4-4915-8869-1ea9d5ebf173
parent d605dada
No related branches found
No related tags found
No related merge requests found
......@@ -248,6 +248,14 @@ function unl_form_alter(&$form, $form_state, $form_id) {
// Also turn on revisioning by default
$form['revision_information']['revision']['#default_value'] = TRUE;
unset($form['revision_information']['revision']['#states']);
// Also hide the "Promoted to front page" option
$form['options']['promote']['#prefix'] = '<div style="display:none;">';
$form['options']['promote']['#suffix'] = '</div>';
// Also hide the "Sticky at top of lists" option
$form['options']['sticky']['#prefix'] = '<div style="display:none;">';
$form['options']['sticky']['#suffix'] = '</div>';
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment