Skip to content

Instantly share code, notes, and snippets.

@gh640
Created February 7, 2016 02:07
Show Gist options
  • Select an option

  • Save gh640/2964a1c9f5dc109ea9d0 to your computer and use it in GitHub Desktop.

Select an option

Save gh640/2964a1c9f5dc109ea9d0 to your computer and use it in GitHub Desktop.
Drupal 7 でテーブルフィールドの sticky header 効果をなくす
<?php
/**
* Implements template_preprocess_table().
*/
function mytheme_preprocess_table(&$variables) {
// すべてのテーブルでテーブルの sticky header を止める
$variables['sticky'] = FALSE;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment