宝塔Linux面板首页关闭软件推荐和广告方法
宝塔自从升级到7.9版本以后面板首页就有了强制广告和首页软件推荐。下面是关闭软件推荐的方法教程
删除首页软件推荐
文件位置:/www/server/panel/BTPanel/static/js/index.js 使用宝塔编辑器搜索
搜索 setTimeout(function () { _this.get_index_list() }, 400) 取消这部分注释。
搜索 product_recommend.init 函数,注释如下内容。
/*product_recommend.init(function(){ index.get_product_status(function(){ index.recommend_paid_version() }); index.get_index_list();})*/软件商店广告
文件路径:/www/server/panel/BTPanel/static/js/soft.js 使用宝塔编辑器搜索
把 if (bt.get_cookie('productPurchase') != null) return false
改为 if (bt.get_cookie('productPurchase') == null) return false