emlog pro 1.6.0 调整商店展示,区分免费和付费专区,默认显示免费区,不过有个bug,就是下载免费模板或免费插件后,会显示全部内容(收费和免费)
修复方法:
打开文件 admin/store.php
switch ($ret) {
case 0:
emDirect($store_path . 'active=1');
case 1:
case 2:
emDirect($store_path . 'error_dir=1');
case 3:
emDirect($store_path . 'error_zip=1');
default:
emDirect($store_path . 'error_source=1');
}
// 改成
switch ($ret) {
case 0:
emDirect($store_path . 'active=1&tag=free');
case 1:
case 2:
emDirect($store_path . 'error_dir=1&tag=free');
case 3:
emDirect($store_path . 'error_zip=1&tag=free');
default:
emDirect($store_path . 'error_source=1&tag=free');
}
评论