关于ECSHOP供货商显示在商品页显示

2016-09-11 20:39 来源:www.chinab4c.com 作者:ecshop专家

 1)、

首先需要修改程序文件,将供货商读取出来,然后赋值给模板
打开文件 /goos.php,


 

 

$smarty->assign('goods',              $goods);

 

上边增加以下代码

 

if($goods['suppliers_id'])
  {
   $goods['suppliers_name']=$db->getOne("sel ect suppliers_name from ".$ecs->table('suppliers')." where suppliers_id=".$goods['suppliers_id']);
  }

 

2)、

 

然后修改模板文件,将供货商显示出来,下面以ECSHOP官方默认模板为例进行讲解

 

打开 /themes/default/goods.dwt 文件

 

在你想显示供货商的地方加入下面代码


<!--{if $goods.suppliers_name } 供货商(ecshoptemplate)-->
      <li class="padd" >
      <strong>供货商:</strong><font class="shop">{$goods.suppliers_name}</font>
      </li>
      <!--{/if}-->