/ Published in: PHP
This example is specific to where the "Show on every page except the listed pages." item was selected, but then we needed to also make sure the block did not show for any page of a certain type.
Expand |
Embed | Plain Text
<?php //Do not show block on event node types $nid = arg(1); return FALSE; } } //Do not show block on these paths $exclude_paths = ' <front> calendar '; $path = drupal_get_path_alias($_GET['q']); if(drupal_match_path($path, $exclude_paths)){ return FALSE; } //otherwise show block return TRUE; ?>
You need to login to post a comment.
