Hi,
I want to hide the tags in all the stories only on my homepage so if a user click on the full story page then user should be able to see the tags on full story page.
Please help me to hide the tags on my site.


should be in ur admin panel
Open link_summary.tpl
Find this
Change toCode:{if $enable_tags} {if $tags} | {section name=thistag loop=$tag_array} {if $tag_array[thistag] neq ''} <a href="{$tags_url_array[thistag]}">{$tag_array[thistag]}</a> {/if} {/section} </span> {/if} {/if}
Code:{if $pagename eq "story"} {if $enable_tags} {if $tags} | {section name=thistag loop=$tag_array} {if $tag_array[thistag] neq ''} <a href="{$tags_url_array[thistag]}">{$tag_array[thistag]}</a> {/if} {/section} </span> {/if} {/if} {/if}