I have editet the link_summary.tpl
when I change
PHP Code:
<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> // linked Title
{else}
<a href="{$story_url}">{$title_short}</a>
{/if}
{/if}
</div>
to
PHP Code:
<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"}
<h1>{$title_short}</h1> // H1 Title
{else}
<a href="{$story_url}">{$title_short}</a>
{/if}
{/if}
</div>
This removes link summary title is used as link for editorials. But it also removes the link for non editorials.
Can somebody please enhance that with an if query which checks if it is an editoriel or link story (title linked / title not linked).
Best Regards