regions

block visibility code doesn't work in all regions

  1. if (drupal_is_front_page() == TRUE) {
  2.   return FALSE;
  3. } else {
  4.   return TRUE;
  5. }

Example Regions for Template.php

  1. <?php
  2.  
  3. //I have three regions: partners, content, and footer. You regions are probably different
  4.  
  5. function mytheme_regions() {
  6.   return array(
  7.    'partners' => t('Partners'),
Syndicate content