/ Published in: PHP
Insert into your phptemplate theme's template.php file to override the original View theme code.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
/** * Display a summary version of a view. Remove node count. */ function phptemplate_views_summary($view, $type, $level, $nodes, $args) { foreach ($nodes as $node) { $items[] = views_get_summary_link($view->argument[$level]['type'], $node, $view->real_url); } if ($items) { $output .= theme('item_list', $items); } return $output; }