当前位置: 首页 > 工具软件 > whatsns > 使用案例 >

去掉whatsns问答系统页面底部隐藏的官网链接

白文彬
2023-12-01

只要修改system/helpers/template_helper.php文件中的getguanwang方法就可以。

function getguanwang($template){
	if(strpos($template,'</body>' )){
		return $template.base64_decode('PGEgc3R5bGU9ImRpc3BsYXk6bm9uZTsiIGhyZWY9Imh0dHA6Ly93d3cud2hhdHNucy5jb20iPndoYXRzbnPpl67nrZTns7vnu5/lhY3otLnniYjnlKjmiLc8L2E+');
	}else{
		return $template;
	}

}

改为

function getguanwang($template){
	if(strpos($template,'</body>' )){
		return $template;
	}else{
		return $template;
	}

}
base64_decode('PGEgc3R5bGU9ImRpc3BsYXk6bm9uZTsiIGhyZWY9Imh0dHA6Ly93d3cud2hhdHNucy5jb20iPndoYXRzbnPpl67nrZTns7vnu5/lhY3otLnniYjnlKjmiLc8L2E+')就是加密的官方链接
 类似资料: