价格: ¥ 199 积分可抵¥ 1
最后更新: 2020-07-14 10:08:58
演示地址: 点击查看
安装费: 免费
ecshop后台显示no_license怎么去掉?如何去掉ecshop后台的no_license提示?
方法一:屏蔽法
找到文件admin/template/start.htm
文件找出所有的
Ajax.call(‘cloud.php?is_ajax=1&act=cloud_remind’,”, cloud_api, ‘GET’, ‘JSON’);
全部在前面打个双斜杠“//” 就可以了 !
方法二:修改文件法
打开 admin/templates/start.htm 文件,删除以下代码:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
<ul id= "cloud_list" style= "padding:0; margin: 0; list-style-type:none; color: #CC0000;" >
</ul>
<script type= "Text/Javascript" language= "JavaScript" >
<!--
Ajax.call( 'cloud.php?is_ajax=1&act=cloud_remind' , '' , cloud_api, 'GET' , 'JSON' );
function cloud_api(result)
{
//alert(result.content);
if (result.content== '0' )
{
document.getElementById( "cloud_list" ).style.display = 'none' ;
}
else
{
document.getElementById( "cloud_list" ).innerHTML =result.content;
}
}
function cloud_close(id)
{
Ajax.call( 'cloud.php?is_ajax=1&act=close_remind&remind_id=' +id, '' , cloud_api, 'GET' , 'JSON' );
}
//-->
</script>
|
0 (0%) 好评 | 0 (0%) 中评 | 0 (0%) 差评 |