您现在的位置是:首页 > 教程 > ecshop商城教程ecshop商城教程
ecshop首页发货通知配送方式订单号收货人发货单号
程欢亭2023-12-11 17:35:23ecshop商城教程已有人查阅
导读打开根目录下的index.php,找到:在下面添加一行:3、在使用模板里面的library目录里,新建一个post_list.lbi的文件
打开根目录下的index.php,找到:
/*------------------------------------------------------ *///-- PRIVATE FUNCTIONS/*------------------------------------------------------ */
在下面添加
{$post.user_name} 您好,您所购物品已经发出,请注意查收!
备注:
$smarty->assign('invoice_list', index_get_invoice_query()); // 发货查询
在下面添加一行:
$smarty->assign('post_list', index_get_post_query()); // 发货通知
2、再找到:/*------------------------------------------------------ *///-- PRIVATE FUNCTIONS/*------------------------------------------------------ */
在下面添加
/*
** 调用发货公告查询**
@access private* @return array
*/
function index_get_post_query(){$sql = 'SELECT order_sn, user_name,action_note FROM ' . $GLOBALS['ecs']->table('order_info') . ' JOIN (' . $GLOBALS['ecs']->table('users') . ',' .$GLOBALS['ecs']->table('order_action') . ') ON (' . $GLOBALS['ecs']->table('users') . '.user_id=' . $GLOBALS['ecs']->table('order_info') . '.user_idAND ' . $GLOBALS['ecs']->table('order_action') . '.order_id=' . $GLOBALS['ecs']->table('order_info') . '.order_id) WHERE ' . $GLOBALS['ecs']->table('order_info') . '.shipping_status = 1 ORDER BY shipping_time DESC LIMIT 10';$postinfo = $GLOBALS['db']->getAll($sql);clearstatcache();return $postinfo;}
3、在使用模板里面的library目录里,新建一个post_list.lbi的文件,把以下代码 到这个文件里面去!{$post.user_name} 您好,您所购物品已经发出,请注意查收!
备注:
{$post.action_note}
{$post.goods_number}
var speed=100demo2.innerHTML=demo1.innerHTMLfunction Marquee(){if(demo2.offsetTop-demo.scrollTop<=0)demo.scrollTop-=demo1.offsetHeightelse{demo.scrollTop++}}var MyMar=setInterval(Marquee,speed)demo.onmouseover=function(){clearInterval(MyMar)}demo.onmouseout=function(){MyMar=setInterval(Marquee,speed)}
4、然后打开index.dwt把下面那段代码放到你想要的地方去!
本文标签:
很赞哦! ()
相关文章
随机图文
-
ecshop文章信息添加时间的修改方法
ecshop实现后台文章信息可以修改添加时间的方法。有时我们希望将过去发布的新闻改成今天发布的,或者是今天发布的文章,希望改成是过去发布的,ECSHOP教 -
ecshop转换后图片路径处理办法
从shopex转换过来后,ecshop的 图片地址都会是http://lwww.ebingou.cn/aa.jpg而ecshop转成功后程序copy图片路径是 -
ecshop首页调用显示最新商品评论
ECSHOP首页显示很新评论,首页调用商品评论新建立一个 index_comments.lbi 库文件然后在index.dwt 要显示的位置调用: -
ecshop广告调用广告位添加到首页顶部通栏的代码实例
ECSHOP系统默认预留的广告位很少,如何才能在首页或者其他页面增加自己想要的广告位呢?下面就讲一讲方法。下面以“在ECSHOP首页顶部增加一个通栏广告”为例进行讲解。
留言与评论 (共有 条评论) |