本帖最后由 大鹏! 于 2011-11-15 09:19 编辑
个性化修改教程
1、修改 首页 第一屏幻灯变幻时间static/js/index.js 第38行
- t = setInterval("showAuto()", 3000);
复制代码 2、如果想更改系统发站内消息的默认用户,可以如下操作
BRAND 2.0 后台审核店铺,系统发站内消息默认的UID是1
https://discuz.dismall.com/thread-2366351-1-1.html
source/class/attend.class.php文件中- function sendMsg() {
- global $_G, $_SC, $lang;
- uc_pm_send(0, $_SC['founder'] , $lang['apm_admin_title'] , $lang['apm_admin_msg']);
- uc_pm_send(0 , $_G['uid'] , $lang['apm_panel_title'] , $lang['apm_panel_msg']);
- }
复制代码 把 uc_pm_send 里面的第一个0换成需要的UID即可
3、品牌空间首页右侧“最新入驻商家”默认4个商家,想修改数量
根目录index.php
- $_BCACHE->cachesql('new_shop', "SELECT itemid FROM ".DB::table("shopitems")." WHERE grade > 2 ORDER BY itemid DESC;", 0, 0, 4, 0, 'index', 'shop');
复制代码 把4改成你想要的数字即可
4、后台logo地址
static/image/admin/logo.gif
5、首页显示统计数据!步骤很简单!
https://discuz.dismall.com/thread-2395594-1-1.html
6、地图默认的位置怎么改
https://discuz.dismall.com/thread-2136454-1-1.html
7、底部第3方流量统计居中显示方法
https://discuz.dismall.com/thread-2094385-1-1.html
8、品牌空间常见数据调用SQL总结
https://discuz.dismall.com/thread-1825362-1-1.html
9、商铺店铺页面增加宣传视频~【难度系数★★】
https://discuz.dismall.com/thread-2434567-1-1.html
10、修改首页调用公告数量。。【难度系数★ 】
https://discuz.dismall.com/thread-2404032-1-1.html
11、首页调用点评+分数完整版本。。【难度系数★★★★ 】
https://discuz.dismall.com/thread-2400716-1-1.html
12、去掉商家评论提交的HTML代码!难度系数【★ 】
https://discuz.dismall.com/thread-2400516-1-1.html
13、商家频道页面增加评论!!!!【难度★★★ 】!!!!
https://discuz.dismall.com/thread-2400367-1-1.html
14、首页显示统计数据!难度系数【★ 】~~~~~~~~~~~
https://discuz.dismall.com/thread-2395594-1-1.html
15、首页幻灯片增加广告标题!【难度系数★ ★ ★ 】
https://discuz.dismall.com/thread-2391734-1-1.html
16、不想显示这个搜团购 应该在哪里关闭这个?
https://discuz.dismall.com/thread-2438226-1-1.html
17、品牌空间logo是什么字体?
https://discuz.dismall.com/thread-2369628-1-1.html
18、我的品牌空间与dz2.0导航统一(已经打包免费下载)
https://discuz.dismall.com/thread-2417131-1-1.html
19、首页调用点评相关方法和思路-晚上已经更新了模板文件,再次更新具体分数调用
https://discuz.dismall.com/thread-2419709-1-1.html
20、品牌空间与论坛导航统一增强版分享(1.5正式版GBK已修正商家页面底部)
https://discuz.dismall.com/thread-2002340-1-1.html
21、t2模板如何修改默认的商品数量
\templates\store\t2\index.html.php
- <!--{block name="sql" parameter="sql/SELECT%20%2A%20FROM%20{$_SC['tablepre']}gooditems%20WHERE%20shopid%20%3D%20{$shop['itemid']}%20AND%20grade%20%3D%203%20ORDER%20BY%20displayorder%20DESC%2Cdateline%20DESC/limit/0,10/cachename/newgoods/tpl/data/pagetype/storelist/usetype/good/shopid/{$_GET['id']}"}-->
- 将里边的0,10的10改为你需要的数目即可
复制代码 22、如何设置地图频道页面地图的视野 2.1新增
templates/site/default/map.html.php- var myOptions = {
- zoom: 12,
- center: latlng,
- navigationControl: true,
- mapTypeControl: true,
- scaleControl: true,
- mapTypeId: google.maps.MapTypeId.ROADMAP
- };
- //初始化地图并设置中心
复制代码 12为放大级数,如果想显示为乡村街道,或者扩展到省一级,整个中国地区,甚至全球,通过修改此处的放大级数来调整。
23、店铺访问数字段
24、为何地图首页的不是全部店铺,如何修改数量限制?
地图首页推荐商家限制10个,按照后台店铺排序数字排序,想放开限制,可以修改map.php
- $query = DB::query("SELECT i.itemid,i.subject,i.address,i.tel,i.discount,m.mapapimark FROM ".DB::table('shopitems')." i LEFT JOIN ".DB::table('shopmessage')." m ON i.itemid=m.itemid WHERE m.mapapimark!='' AND i.grade>2 ORDER BY i.displayorder ASC,i.itemid DESC LIMIT 10");
复制代码 把数字10改成你想要的数字,如果你懂更多数据库排序的方法,也都可以修改成你想要的。
25、如何将店铺首页相册由默认相册缩略图改为相册封面图
https://discuz.dismall.com/thread-2490683-1-1.html
26、首页会员卡商家,这几个字在哪里修改
https://discuz.dismall.com/thread-2489546-1-1.html
27、如何关闭店铺首页的咨询功能,但又必须保留评论功能
https://discuz.dismall.com/thread-2497626-1-1.html
28、统计数据增加随你设!难易程度【★ ★ 】
https://discuz.dismall.com/thread-2483132-1-1.html
|
|