Skip to content

Instantly share code, notes, and snippets.

@svendecabooter
Created October 31, 2012 15:28
Show Gist options
  • Save svendecabooter/3987671 to your computer and use it in GitHub Desktop.
Save svendecabooter/3987671 to your computer and use it in GitHub Desktop.
Disable Toolbar in colorbox iframe popups
/**
* Implements hook_preprocess_page().
*/
function NAME_preprocess_html(&$vars) {
if (arg(0) == "colorbox") {
// disable the Toolbar when we're in a colorbox popup
unset($vars['page']['page_top']['toolbar']);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment