Aquí hay un módulo personalizado que escribí para Drupal 7 que elimina "promocionar a la página principal" y "adhesivo en la parte superior de las listas" en los formularios de agregar / editar nodo, formularios de agregar / editar tipo de contenido y el menú desplegable admin / contenido. Este módulo no altera la configuración de la base de datos, por lo que no cambiará el contenido existente, siempre puede deshabilitarlo y recuperar sus opciones y todo funcionará igual que antes.
Pegue este código en un hide_sticky_promote.module y haga un archivo hide_sticky_promote.info correspondiente, habilite el módulo y wallah, no más pegajoso y promueva casillas de verificación o selecciones desplegables.
/**
* 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]);
}
}
O cógelo desde aquí en forma de módulo: https://github.com/StudioZut/hide-sticky-promote