Moved this thread under "Customization Assistance" where it belongs.
Anyway are you saying you don't what the "discuss" link to appear under the story while on story pages?
Open link_summary.tpl and look for:
Code:
<span id="ls_comments_url-{$link_shakebox_index}">
{if $story_comment_count eq 0}
<span id="linksummaryDiscuss"><a href="{$story_url}" class="comments">{#PLIGG_MiscWords_Discuss#}</a> </span>
{/if}
{if $story_comment_count eq 1}
<span id="linksummaryHasComment"><a href="{$story_url}" class="comments2">{$story_comment_count} {#PLIGG_MiscWords_Comment#}</a> </span>
{/if}
{if $story_comment_count gt 1}
<span id="linksummaryHasComment"><a href="{$story_url}" class="comments2">{$story_comment_count} {#PLIGG_MiscWords_Comments#}</a> </span>
{/if}
</span>
Replace with:
Code:
{if $pagename ne "story"}
<span id="ls_comments_url-{$link_shakebox_index}">
{if $story_comment_count eq 0}
<span id="linksummaryDiscuss"><a href="{$story_url}" class="comments">{#PLIGG_MiscWords_Discuss#}</a> </span>
{/if}
{if $story_comment_count eq 1}
<span id="linksummaryHasComment"><a href="{$story_url}" class="comments2">{$story_comment_count} {#PLIGG_MiscWords_Comment#}</a> </span>
{/if}
{if $story_comment_count gt 1}
<span id="linksummaryHasComment"><a href="{$story_url}" class="comments2">{$story_comment_count} {#PLIGG_MiscWords_Comments#}</a> </span>
{/if}
</span>
{if}