Hey, I'm trying to hide breadcrumbs on user profiles, but the snippet I discovered to do so doesn't seem to work on zen.
function phptemplate_preprocess_page(&$variables) {
// Disable breadcrumbs only on a user's profile page.
if (arg(0) == 'user' && is_numeric(arg(1)) && !arg(2)) {
unset($variables['breadcrumb']);
}
}Is what I found. How can i get this to work with zen? I tried switching 'variables' to 'vars' but no luck there.
Comments
Comment #1
akalata commentedYou'll want to rename the function to yourtheme_preprocess_page. For more info on theme functions, see http://api.drupal.org/api/group/themeable/6
Comment #2
akalata commented