如何在pligg供电网站的主页上隐藏故事内容

时间:2014-05-21 11:50:26

标签: pligg

从主页隐藏故事内容 指示符(#116)10小时前storycontent讨论 嗨,大家好, 我想从家庭和类别索引隐藏故事内容,但是当访问者点击讨论时,故事内容应该在那里。我怎么能这样做,我尝试过,然后故事内容隐藏在任何地方。

请帮助,感谢您的帮助

1 个答案:

答案 0 :(得分:0)

修改档案 templates\bootstrap\link_summary.tpl

<强>查找

{if $pagename eq "story"}
{* The nl2br modifier will convert line breaks to <br> tags. http://www.smarty.net/docsv2/en/language.modifier.nl2br.tpl*}
{$story_content|nl2br}
{else}
{* The truncate modifier will cut off content after X characters. http://www.smarty.net/docsv2/en/language.modifier.truncate *}
{$story_content|nl2br}
{/if}

替换为:

{if $pagename eq "story"}
{* The nl2br modifier will convert line breaks to <br> tags. http://www.smarty.net/docsv2/en/language.modifier.nl2br.tpl*}
{$story_content|nl2br}
{/if}

看起来Pligg中存在一个错误,因为else分支与if分支相同。似乎他们打算在truncate分支上使用Smarty的else修饰符,只在故事页面以外的页面上显示摘要。