FOR NODE TITLEIn node-type.tpl.php replace<h2 class="title"><a href="<?php print $node_url; ?>" title="<?php print $title ?>"><?php print $title; ?></a></h2>WITH<h2 class="title"><a href="<?php print $node_url; ?>" title="<?php print $title ?>"><?phpif(($teaser) && ($is_front) ){ //teaser of front page only$l_title = strlen($title);$title_len = 12;//change this value to change the lenght ofthe node title to displayif($l_title> $title_len){$title_show = substr($title, 0, $title_len);$is_space_t = substr($body_show, -1, 1);if($is_space_t == " "){//if last character is space,omit it$title_show = substr($body_show, 0,$title_len-1);}print $title_show;print "...";}else {print $title;}}else {print $title;}?></a></h2>
Add a Comment