Hier ist ein benutzerdefiniertes Modul, das ich für Drupal 7 geschrieben habe. Es entfernt "Zur Startseite hochstufen" und "An der Spitze der Listen kleben" bei Formularen zum Hinzufügen / Bearbeiten von Knoten, Formularen zum Hinzufügen / Bearbeiten von Inhaltstypen und der Dropdown-Liste "Admin / Inhalt". Dieses Modul ändert keine Datenbankeinstellungen, sodass vorhandene Inhalte nicht geändert werden. Sie können es jederzeit deaktivieren und Ihre Optionen wiederherstellen. Alles funktioniert wie zuvor.
Fügen Sie diesen Code in ein hide_sticky_promote.module ein und erstellen Sie eine entsprechende hide_sticky_promote.info-Datei. Aktivieren Sie das Modul und die Wallah.
/**
* Remove sticky/promote entirely from add and edit content type forms.
*
* Implements hook_form_FORM_ID_alter().
*/
function hide_sticky_promote_form_node_type_form_alter(&$form, &$form_state, $form_id) {
// Remove sticky/promote entirely from add and edit content type forms.
$options = array('promote', 'sticky');
foreach ($options as $key) {
unset($form['workflow']['node_options']['#options'][$key]);
}
}
/**
* Remove sticky/promote entirely from node/X/edit & node/X/add forms.
*
* Implements hook_form_BASE_FORM_ID_alter().
*/
function hide_sticky_promote_form_node_form_alter(&$form, &$form_state, $form_id) {
$options = array('promote', 'sticky');
foreach ($options as $key) {
$form['options'][$key]['#access'] = FALSE;
}
}
/**
* Remove some sticky/promote update options on admin/content.
*
* Implements hook_form_FORM_ID_alter().
*/
function hide_sticky_promote_form_node_admin_content_alter(&$form, &$form_state, $form_id) {
$options = array('demote', 'promote', 'sticky', 'unsticky', );
foreach ($options as $key) {
unset($form['admin']['options']['operation']['#options'][$key]);
}
}
Oder greifen Sie hier in Modulform zu: https://github.com/StudioZut/hide-sticky-promote