如何在pligg中编辑侧栏小部件

时间:2013-08-17 13:10:17

标签: pligg

我已经安装了pligg cms,我可以看到一个侧栏小部件为'什么是Pligg? ”。我想删除这个,我该怎么办?我在管理面板中看不到任何选项。提前谢谢。

2 个答案:

答案 0 :(得分:2)

我在Pligg CMS上有点新手,但是我觉得这个很容易。

模块--->修改语言---->侧边栏:

PLIGG_Visual_What_Is_Pligg:“你可以在这里输入你的文字”

PLIGG_Visual_What_Is_Pligg_Text:“你可以在这里输入你的文字”

因此,您只需插入自己的文字或将其删除即可。

答案 1 :(得分:1)

您可能在/ templates / name-of-your-template /中有一个名为“about_box.tpl”的文件(例如/ templates / bootstrap /) 类似于:

{************************************
******** About Box Template *********
*************************************}
<!-- about_box.tpl -->
{checkActionsTpl location="tpl_widget_about_start"}
<div class="headline">
    <div class="sectiontitle">{#PLIGG_Visual_What_Is_Pligg#}</div>
</div>
<div id="aboutcontent">
    {#PLIGG_Visual_What_Is_Pligg_Text#}
</div>
{checkActionsTpl location="tpl_widget_about_end"}
<!--/about_box.tpl -->

将其编辑为:

{************************************
******** About Box Template *********
*************************************}
<!-- about_box.tpl -->
{checkActionsTpl location="tpl_widget_about_start"}
<div id="aboutcontent">
    {#PLIGG_Visual_What_Is_Pligg_Text#}
</div>
{checkActionsTpl location="tpl_widget_about_end"}
<!--/about_box.tpl -->

如果您想完全从侧边栏中删除关于盒子部分的信息。转到temapltes / bootstrap / sidebar.tpl

您的代码可能与此类似:

{************************************
****** First Sidebar Template *******
*************************************}
<!-- sidebar.tpl -->
{if $pagename neq "submit"}
    {checkActionsTpl location="tpl_pligg_sidebar2_start"}
    <!-- START SEARCH BOX -->
        {include file=$the_template."/search_box.tpl"}
    <!-- END SEARCH BOX -->
    {checkActionsTpl location="tpl_pligg_sidebar_middle"}
    <!-- START ABOUT BOX -->
        {include file=$the_template."/about_box.tpl"}
    <!-- END ABOUT BOX -->
    {checkActionsTpl location="tpl_pligg_sidebar2_end"}
{/if}
<!--/sidebar.tpl -->

将其编辑为:

{************************************
****** First Sidebar Template *******
*************************************}
<!-- sidebar.tpl -->
{if $pagename neq "submit"}
    {checkActionsTpl location="tpl_pligg_sidebar2_start"}
    <!-- START SEARCH BOX -->
        {include file=$the_template."/search_box.tpl"}
    <!-- END SEARCH BOX -->
    {checkActionsTpl location="tpl_pligg_sidebar_middle"}
    {checkActionsTpl location="tpl_pligg_sidebar2_end"}
{/if}
<!--/sidebar.tpl -->