I'm working a lot in views 2, I think it would be great to be able to change the title (within views>basic settings) of a certain block or page to textimage. Is is possible? Does anyone have any brilliant ideas or tips?

Comments

attiks’s picture

For pages you can use this in template.php, this changes all page titles

function MYTHEME_preprocess_page(&$vars, $hook) {
  if ($vars['title'] != '') {
    $vars['title'] = theme('textimage_image', 'subtitle', $vars['title'], array(), 'png', $vars['title'], $vars['title']);
  }
}
mondrake’s picture

Issue summary: View changes
Status: Active » Closed (outdated)