您现在的位置是:首页 > 教程 > ecshop商城教程ecshop商城教程
ecshop首页促销商品下怎么显示促销倒计时间
冰旋2023-12-08 18:56:57ecshop商城教程已有人查阅
导读有时我们需要在网站首页添加某个分类下的品牌,这就需要做些ecshop的二次开发,我写了一个简单的函数只要放在index.php中直接调用就ok了。
有时我们需要在网站首页添加某个分类下的品牌,这就需要做些ecshop的二次开发,我写了一个简单的函数只要放在index.php中直接调用就ok了。
function get_cat_brands( $cat, $num = 0, $app = “category” )
{
$where = “”;
if ( $num != 0 )
{
$where = ” limit “.$num;
}
$children = 0 < $cat ? ” AND “.get_children( $cat ) : “”;
$sql = “SELECT b.brand_id, b.brand_name, b.brand_logo, COUNT(g.goods_id) AS goods_num, IF(b.brand_logo > ”, ’1′, ’0′) AS tag FROM “.$GLOBALS['ecs']->table( “brand” ).”AS b, “.$GLOBALS['ecs']->table( “goods” ).” AS g “.( “WHERE g.brand_id = b.brand_id “.$children.” ” ).”GROUP BY b.brand_id HAVING goods_num > 0 ORDER BY tag DESC, b.sort_order ASC “.$where;
$row = $GLOBALS['db']->getAll( $sql );
foreach ( $row as $key => $val )
{
$row[$key]['id'] = $val['brand_id'];
$row[$key]['name'] = $val['brand_name'];
$row[$key]['logo'] = $val['brand_logo'];
$row[$key]['url'] = build_uri( $app, array(
“cid” => $cat,
“bid” => $val['brand_id']
), $val['brand_name'] );
}
return $row;
}
其中$cat就是分类ID。
本文标签:
很赞哦! ()
相关文章
随机图文
-
ecshop订单状态和对应值介绍
订单状态 未确认 取消 确认 已付款 配货中 已发货 已收货 退货order_status 0 2 1 1 1 5 5 4shipping_status 0 0 0 0 3 1 2 0pay_status 0 0 0 2 2 2 2 01、ecshop订单状 -
ecshop商品批量上传修改价格方法
前缀自行修改:本店价格update ecs_goods set shop_price = shop_price*0.55市场价格update ecs_go -
ecshop模板修改方法实例
ECSHOP模板修改需要会DIV CSS知识。还有就是DWT,LBI文件的意义,熟记以下一些模板程序有助于修改模板,更多好看的模板也可以看看代码号 -
ecshop数据表结构完整仔细说明教程
s_account_log //用户账目日志表字段类型Null 默认注释log_idmediumint(8)否自增ID号us
留言与评论 (共有 条评论) |