把最新文章的内容显示在首页,怎么做

2016-07-07 16:11 来源:www.chinab4c.com 作者:ecshop专家

请问有谁知道把最新文章的内容显示在首页,怎么做?

回答:
Q我知道。。。。。。。。。。

怎么做?

您好,默认模板的组件new_articles.lbi 就是调取最新文章的。
您可以在ecshop默认模板首页的模板文件中ndex.dwt中搜索得到。

希望对您有帮助

如果你的模板支持后台设置,就去后台直接设置,否则需要更改代码来调用文章,如下:
在模板index.dwt里找到右边模块结束的地方,也就是<!--right end-->,
在<!-- TemplateEndEditable -->之后加上
<!-- TemplateBeginEditable name="文章区域" --><!-- TemplateEndEditable -->,其中“文章区域
”这个名字是可以修改的,和你在后台看到的名字是一致的。
然后修改模板里的库文件cat_articles.lbi,替换成下面的代码
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<div style="width:243px; float:left; margin-right:3px;">
<div class="box">
<div class="box_1">
<h3>
<span><a href="{$articles_cat.url}">{$articles_cat.name|escape:html}</a></span>
<a href="{$articles_cat.url}"><img src="../images/more.gif" alt="more" /></a>
</h3>
<div class="boxCenterList RelaArticle">
<!--{foreach from=$articles item=article}-->
<a href="{$article.url}" title="{$article.title|escape:html}">{$article.short_title}
</a><br />
<!--{/foreach}-->
</div>
</div>
</div>
</div>
其中需要注意编码,用GBK的自行替换成GBK,其中的宽度自己控制,自己多试下就知道大小了。

Thank you so much

怎么做个模本首页只显示几个产品名
比如:
产品1 产品2产品3

点相应的名字就进入了其类别下。 首页其他什么内容都不要

谢谢




为什么什么反映都没有?




首页已经显示
可是显示的只是连接,怎么显示详细内容