ecshop--在任意页面调用商品属性

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ecshop--在任意页面调用商品属性相关的知识,希望对你有一定的参考价值。

直接用下面的方法,就可以在ECSHOP的任意页面调用商品属性

一)、
打开includes\lib_insert.php文件,在最后面增加一个函数:
function insert_attr($arr)
{
 static $static_res = NULL;
 $aid= isset($arr[‘aid‘])?$arr[‘aid‘]:0;
 $gid= isset($arr[‘gid‘])?$arr[‘gid‘]:0;
 if($aid==0) return ‘‘;
 if ($static_res[$aid][$gid] === NULL)
 {
  if($gid>0)
  {
   $static_res[$aid][$gid] =  $GLOBALS[‘db‘]->getOne(‘select attr_value from ‘ . $GLOBALS[‘ecs‘]->table(‘goods_attr‘) . " where attr_id =‘$aid‘ and goods_id=‘$gid‘ ");      
  }
  else
  {
   $static_res[$aid][$gid] = $GLOBALS[‘db‘]->getOne(‘select attr_name from ‘ . $GLOBALS[‘ecs‘]->table(‘attribute‘) . " where attr_id =‘$aid‘ "); 
  }
 }

    return $static_res[$aid][$gid];
}

注意要加在  ?>  的前面
二)、
接下来就可以直接在 ecshop模板中(dwt文件、lib文件皆可)中调用,
调用方法:
{insert name=‘attr‘ aid=属性id gid=商品编号} 调用商品的属性值
{insert name=‘attr‘ aid=属性id} 调用商品的属性

是不是很简单,经过上面修改代码或增加代码后,就可以在ECSHOP的任意页面调用商品属性了。


我是在内容详情页调用的:


{insert name=‘attr‘ aid=224 }:{insert name=‘attr‘ aid=224 gid=$id}


以上是关于ecshop--在任意页面调用商品属性的主要内容,如果未能解决你的问题,请参考以下文章

ECSHOP如何调用全部商品分类

如何在ecshop首页给商品加入立即购买与收藏按钮

ecshop 如何调用商品分类下的子分类里的商品?

ecshop首页如何调用分类下的子分类商品

在ECSHOP商品列表页和搜索页面,最后出现空商品的解决办法

ecshop 属性表(attribute)商品属性表(goods_attr)货品表(prduct) 商品数量的联系