新聞中心
如何讓ECSHOP標(biāo)簽云的所有標(biāo)簽被首頁(yè)調(diào)用
作者 / 無(wú)憂主機(jī) 時(shí)間 2015-09-21 17:21:26
今天無(wú)憂主機(jī)小編在處理一個(gè)php虛擬主機(jī)用戶的售后時(shí),他想讓ecshop標(biāo)簽云的所有標(biāo)簽都被首頁(yè)調(diào)用。說實(shí)話,一開始小編也不會(huì)。然后就一邊研究一邊詢問其他專業(yè)人士,經(jīng)過半小時(shí)的努力,小編終于找到了解決方案。下面小編就來(lái)和大家分享一下具體方法: 我們以官方提供的默認(rèn)模版為例 1:首先打開 /index.php 文件并找到
$smarty->assign('shop_notice', $_CFG['shop_notice']); // 商店公告在它下邊來(lái)增加一段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); //標(biāo)簽云2:其次再來(lái)打開模板文件 /themes/default/index.dwt 找到你想要顯示標(biāo)簽云的地方,加入下面的代碼:
<!--標(biāo)簽云--> <div class="box"> <div class="box_1"> <h3><span><a href="/exchange.php" class="f6">標(biāo)簽云</a></span></h3> <div class="centerPadd"> <div class="clearfix goodsBox" style="border:none;"> <!-- {if $tag_list} --> <!-- 標(biāo)簽云開始 {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> <!-- 標(biāo)簽云結(jié)束 {/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:登入到網(wǎng)站后臺(tái)去更新一下緩存,就可以了! 無(wú)憂主機(jī)相關(guān)文章推薦閱讀: 在ECSHOP商品頁(yè)顯示累計(jì)銷售量的方法 ECSHOP首頁(yè)調(diào)用標(biāo)簽云的所有標(biāo)簽的方法 ECSHOP程序如何解決友情鏈接鏈重名被限制的方法
本文地址:http://www.gle-technology.com/ecshop/20228.html