Remove Sticky Headers in Drupal 6


/ Published in: PHP
Save to your folder(s)



Copy this code and paste it in your HTML
  1. //file:template.php
  2.  
  3. function phptemplate_preprocess_page(&$vars)
  4. {
  5. $vars['content'] = preg_replace('!(<table[^>]*)sticky-enabled(.*>)!sim', '$1$2',$vars['content']);
  6. }

Report this snippet


Comments


You need to login to view comments.