To remove the link when the story is viewed in full (page = story) change the following in /templates/
yourtemplate/link_summary.tpl
Remove the code in RED Code:
<div class="top">
<div class="toptitle" id="ls_thetitle-{$link_shakebox_index}">
{if $use_title_as_link eq true}
{if $url_short neq "http://" && $url_short neq "://"}
<a href="{$url}" {if $open_in_new_window eq true} target="_blank"{/if}>{$title_short}</a>
{else}
<a href="{$story_url}">{$title_short}</a>
{/if}
{else}
{if $pagename eq "story"}
<a href="{$url}">{$title_short}</a>
{else}
<a href="{$story_url}">{$title_short}</a>
{/if}
{/if}
</div>