1. configure --> Story --> Open Story Link in New Window --> true
2. ถ้าไม่ชอบ เปิดไฟล์ /templates/"ชื่อ เทมเพลต"/link_summary.tpl
วิธีนี้จะทำให้ฟังก์ชั่นในข้อ 1 ไม่มีผลใดๆ เพราะ จะลิ้งค์ออก หน้าใหม่ทั้งหมด
{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} {if $story_status neq "published"}rel="nofollow"{/if}>{$title_short}</a>
{else}
<a href="{$story_url}" {if $open_in_new_window eq true} target="_blank"{/if}>{$title_short}</a>
{/if}
{else}
{if $pagename eq "story" && $url_short neq "http://" && $url_short neq "://"}
<a href="{$url}" {if $open_in_new_window eq true} target="_blank"{/if} {if $story_status neq "published"}rel="nofollow"{/if}>{$title_short}</a>
{else}
<a href="{$story_url}">{$title_short}</a>
{/if}
{/if}
เอาโค๊ด ข้างล่างไปใส่แทน
{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} {if $story_status neq "published"}rel="nofollow"{/if} target="_blank">{$title_short}</a>
{else}
<a href="{$story_url}" {if $open_in_new_window eq true} target="_blank"{/if} target="_blank">{$title_short}</a>
{/if}
{else}
{if $pagename eq "story" && $url_short neq "http://" && $url_short neq "://"}
<a href="{$url}" {if $open_in_new_window eq true} target="_blank"{/if} {if $story_status neq "published"}rel="nofollow"{/if} target="_blank">{$title_short}</a>
{else}
<a href="{$story_url}" target="_blank">{$title_short}</a>
{/if}
{/if}