Remove The 'Add New Comment' From Teasers
Here is a quick way to remove the 'Add new comment' link from teaser views. Put the following into your custom, site specific module.
<?php
/**
* Implementation of hook_link_alter
* Remove add comment link from teaser
**/
function modulename_link_alter(&$links, $node){
if( arg(0) == 'node' && is_numeric(arg(1)) ){
return; // halt if full page view
} elseif( ! empty($links['comment_add']) ){
unset($links['comment_add']);
}
}
?>