基于TP 3,.2的WSTMall今天更新了
自WSTMall发布以来,我们收到很多支持WSTMall的朋友通过不同渠道的反馈,WSTMall本次更新重点放在了稳定原有功能、修复系统BUG,并未新增很多新的功能,我们希望把本系统的体验性提升,本程序需使用PHP5.3以上版本运行。
WSTMall团队感谢大家对WSTMall的支持,
本次更新内容有:
1.升级layer控件版本为1.9.3.
2.使用thinkphp session()函数代替$_SESSION,避免session干扰.
3.前台代码重构,增加缓存功能,为后续缓存功能扩展预留空间.
4.将原来的log_logins表改名为log_staff_logins表,增加log_user_logins记录用户登录信息.
5.去除部分服务器检测不到磁盘空间大小而无法进行下一步安装的限制.
6.品牌及店铺街社区选择加入cookie记录.
7.去除首页广告图片延迟加载.
8.切换城市时,去掉头部搜索随滚动条移动.
9.增加会员、商家加返回首页链接及首页店铺入口.
10.修复前后台商家及会员注册资料重复的bug.
11.修复图片上传格式错误的bug.
12.修复shop_configs表缺少主键和自增ID的bug.
13.增加注册协议页面.
14.修复商家及用户后台confirm窗口点击之后没有关闭的bug.
15.修复用户后台删除地址时confirm窗口点击之后没有关闭的bug.
16.修改为店铺注册后直接登录.
17.增加找回密码邮件及短信功能及配置(发短信需自行开发).
18.商家菜单增加新增商品的菜单.
19.修复右侧垂直菜单栏挡住部分菜单的bug.
20.合并商城、卖家和买家顶部横栏文件,去除顶部wstmall标题限制。
21.保持店铺街说明和店铺说明一致,店铺补上平均配送时间和包邮配送价
22.用户和商家后台布局调宽,统一用户/商家和前台的logo.
23.修改用户后台“退款”为“拒收/退款”。
24.暂时屏蔽在线支付的选项。
25.改善用户评价订单操作体验。
26.商品搜索时建立分类和品牌的关系。
27.修复品牌汇查出多余品牌的bug。
28.修复商家后台编辑商家资料时,营业时间为输入框的bug。
WSTMall在成长的脚步上离不开大家的热心支持,大家有什么意见或者建议可通过以下渠道反馈给我们:
WSTMall用户交流群 50056937
WSTMall客服QQ:707563272
WSTMall客服电话:020-29806661
WSTMall邮箱 wasonteam@163.com
WSTMall官网:http://www.wstmall.com
百度贴吧:http://tieba.baidu.com/wstmall
wstmall_v1.1.0_150707.rar
( 4.43 MB 下载:107 次 )
AD:真正免费,域名+虚机+企业邮箱=0元

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Learn about Python programming with introductory code examples Python is an easy-to-learn, yet powerful programming language. For beginners, it is very important to understand the introductory code examples of Python programming. This article will provide you with some concrete code examples to help you get started quickly. Print HelloWorldprint("HelloWorld") This is the simplest code example in Python. The print() function is used to output the specified content

"Go Language Programming Examples: Code Examples in Web Development" With the rapid development of the Internet, Web development has become an indispensable part of various industries. As a programming language with powerful functions and superior performance, Go language is increasingly favored by developers in web development. This article will introduce how to use Go language for Web development through specific code examples, so that readers can better understand and use Go language to build their own Web applications. 1. Simple HTTP Server First, let’s start with a

PHP variables store values during program runtime and are crucial for building dynamic and interactive WEB applications. This article takes an in-depth look at PHP variables and shows them in action with 10 real-life examples. 1. Store user input $username=$_POST["username"];$passWord=$_POST["password"]; This example extracts the username and password from the form submission and stores them in variables for further processing. 2. Set the configuration value $database_host="localhost";$database_username="username";$database_pa

The simplest code example of Java bubble sort Bubble sort is a common sorting algorithm. Its basic idea is to gradually adjust the sequence to be sorted into an ordered sequence through the comparison and exchange of adjacent elements. Here is a simple Java code example that demonstrates how to implement bubble sort: publicclassBubbleSort{publicstaticvoidbubbleSort(int[]arr){int

How to use PHP to write the inventory management function code in the inventory management system. Inventory management is an indispensable part of many enterprises. For companies with multiple warehouses, the inventory management function is particularly important. By properly managing and tracking inventory, companies can allocate inventory between different warehouses, optimize operating costs, and improve collaboration efficiency. This article will introduce how to use PHP to write code for inventory warehouse management functions, and provide you with relevant code examples. 1. Establish the database before starting to write the code for the inventory warehouse management function.

Huawei Cloud Edge Computing Interconnection Guide: Java Code Samples to Quickly Implement Interfaces With the rapid development of IoT technology and the rise of edge computing, more and more enterprises are beginning to pay attention to the application of edge computing. Huawei Cloud provides edge computing services, providing enterprises with highly reliable computing resources and a convenient development environment, making edge computing applications easier to implement. This article will introduce how to quickly implement the Huawei Cloud edge computing interface through Java code. First, we need to prepare the development environment. Make sure you have the Java Development Kit installed (

Title: From Beginner to Mastery: Code Implementation of Commonly Used Data Structures in Go Language Data structures play a vital role in programming and are the basis of programming. In the Go language, there are many commonly used data structures, and mastering the implementation of these data structures is crucial to becoming a good programmer. This article will introduce the commonly used data structures in the Go language and give corresponding code examples to help readers from getting started to becoming proficient in these data structures. 1. Array Array is a basic data structure, a group of the same type

Java Selection Sorting Method Code Writing Guide and Examples Selection sorting is a simple and intuitive sorting algorithm. The idea is to select the smallest (or largest) element from the unsorted elements each time and exchange it until all elements are sorted. This article will provide a code writing guide for selection sorting, and attach specific Java sample code. Algorithm Principle The basic principle of selection sort is to divide the array to be sorted into two parts, sorted and unsorted. Each time, the smallest (or largest) element is selected from the unsorted part and placed at the end of the sorted part. Repeat the above
