如何让ECSHOP标签云的所有标签被首页调用

今天高速度 主机小编在处理一个php虚拟主机用户的售后时,他想让ecshop标签云的所有标签都被首页调用。说实话,一开始小编也不会。然后就一边研究一边询问其他专业人士,经过半小时的努力,小编终于找到了解决方案。下面小编就来和大家分享一下具体方法:我们以官方提供的默认模版为例1:首先打开 /index.php 文件并找到

$smarty->assign('shop_notice', $_CFG['shop_notice']); // 商店公告
在它下边来增加一段php代码:
$sql=‘select tag_id,user_id,tag_words,count(tag_id) as tag_count’.'from'.$globals[''ecs]->table['tag'.]"group by tag_words";$tag_list=$globals['db']->getall($sql);if(!empty($tag_lset)){ inlude_once(root_path. 'includes/lib_clips.php');color_tag($tag_list);} $smarty->assign('tag_list',$tag_list); //标签云
2:其次再来打开模板文件 /themes/default/index.dwt找到你想要显示标签云的地方,加入下面的代码:
<!--标签云--><div class="box"><div class="box_1"><h3><span><a href="/exchange.php" class="f6">标签云</a></span></h3><div class="centerPadd"><div class="clearfix goodsBox" style="border:none;"><!-- {if $tag_list} --><!-- 标签云开始 {foreach from=$tag_list item=tag}--><span style="font-size:{$tag.size}; line-height:36px;"> | <a href="{$tag.url}" style="text-decoration:none;color:{$tag.color}">{if $tag.bold}<b>{$tag.tag_words|escape:html}</b>{else}{$tag.tag_words|escape:html}{/if}</a> </span><!-- 标签云结束 {/foreach}--><!-- {else} --><span style="margin:2px 10px; font-size:14px; line-height:36px;">{$lang.no_tag}</span><!-- {/if} --><div class="more"><a href="/tag_cloud.php"><img src="images/more.gif" /></a></div></div></div></div></div><div class="blank5"></div>
3:登入到网站后台去更新一下缓存,就可以了!高速度 主机相关文章推荐阅读:在ECSHOP商品页显示累计销售量的方法ECSHOP首页调用标签云的所有标签的方法ECSHOP程序如何解决友情链接链重名被限制的方法

本文地址:https://www.gaosudu.com/ecshop/20228.html