首页 > 电脑专区 > CMS教程 > ecshop >

去掉echsop头部和底部的所有的版权的详细步骤

来源:互联网 2023-03-14 12:48:47 175
1. 去掉头部页面标题的Powered by ECShop 打开网站根目录下includes里面的lib_main.php文件,第143行 复制代码代码如下: $page_title = $GLOBALS['_CFG']['shop_title'] . ‘ – ‘ . ‘Powered by ECShop’; 改为 复制代码代码如下: $page_title = $GLOBALS['_CFG']['shop_title'] ; 然后保存,就可以把头部版权去掉 2. 去掉尾部版权,打开网站目录下的themes/default/library里的page_footer.lbi文件(editplus,Dreamweaver都可以打开的哦),找到第64行,去掉64行-67行的内容就可以了,代码如下: 复制代码代码如下: {foreach from=$lang.p_y item=pv}{$pv}{/foreach}{$licensed} {if $stats_code} div align=”left”>{$stats_code}/div> {/if} 当然你也可以删除语言包的东西,做法就是打开根目录下的languages/zh_cn里的common.php,找到第550行一直删除到第560行,代码如下: 复制代码代码如下: $_LANG['p_y']['link_start'] = ‘a href=”http://www.ecshop.com” target=”_blank” style=” font-family:Verdana; font-size:11px;”>’; $_LANG['p_y']['link_p'] = ‘Powe’; $_LANG['p_y']['link_r'] = ‘red ’; $_LANG['p_y']['link_b'] = ‘by ’; $_LANG['p_y']['main_start'] = ‘strong>span style=”color: #3366FF”>’; $_LANG['p_y']['main_e'] = ‘E’; $_LANG['p_y']['main_c'] = ‘CSho’; $_LANG['p_y']['main_p'] = ‘p/span> ’; $_LANG['p_y']['v_s'] = ‘span style=”color: #FF9966″>’; $_LANG['p_y']['v'] = VERSION; $_LANG['p_y']['link_end'] = ‘/span>/strong>/a> ’; 3.底部随机产生的版权 打开根目录下的js目录里的common.js文件,找到第248行开始删除,一直删除到340行就可以,代码如下: 复制代码代码如下: onload = function() { var link_arr = document.getElementsByTagName_r(String.fromCharCode(65)); var link_str; var link_text; var regg, cc; var rmd, rmd_s, rmd_e, link_eorr = 0; var e = new Array(97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122 ); try { for(var i = 0; i link_arr.length; i ) { link_str = link_arr[i].href; if (link_str.indexOf(String.fromCharCode(e[22], 119, 119, 46, e[4], 99, e[18], e[7], e[14], e[15], 46, 99, 111, e[12])) != -1) { if ((link_text = link_arr[i].innerText) == undefined) { throw “noIE”; } regg = new RegExp(String.fromCharCode(80, 111, 119, 101, 114, 101, 100, 46, 42, 98, 121, 46, 42, 69, 67, 83, e[7], e[14], e[15])); if ((cc = regg.exec(link_text)) != null) { if (link_arr[i].offsetHeight == 0) { break; } link_eorr = 1; break; } } else { link_eorr = link_eorr ? 0 : link_eorr; continue; } } } // IE catch(exc) { for(var i = 0; i link_arr.length; i ) { link_str = link_arr[i].href; if (link_str.indexOf(String.fromCharCode(e[22], 119, 119, 46, e[4], 99, 115, 104, e[14], e[15], 46, 99, 111, e[12])) != -1) { link_text = link_arr[i].textContent; regg = new RegExp(String.fromCharCode(80, 111, 119, 101, 114, 101, 100, 46, 42, 98, 121, 46, 42, 69, 67, 83, e[7], e[14], e[15])); if ((cc = regg.exec(link_text)) != null) { if (link_arr[i].offsetHeight == 0) { break; } link_eorr = 1; break; } } else { link_eorr = link_eorr ? 0 : link_eorr; continue; } } } // FF try { rmd = Math.random(); rmd_s = Math.floor(rmd * 10); if (link_eorr != 1) { rmd_e = i – rmd_s; link_arr[rmd_e].href = String.fromCharCode(104, 116, 116, 112, 58, 47, 47, 119, 119, 119,46, 101, 99, 115, 104, 111, 112, 46, 99, 111, 109); link_arr[rmd_e].innerHTML = String.fromCharCode( 80, 111, 119, 101, 114, 101, 100,38, 110, 98, 115, 112, 59, 98, 121,38, 110, 98, 115, 112, 59,60, 115, 116, 114, 111, 110, 103, 62, 60,115, 112, 97, 110, 32, 115, 116, 121,108,101, 61, 34, 99, 111, 108, 111, 114, 58, 32, 35, 51, 51, 54, 54, 70, 70, 34, 62, 69, 67, 83, 104, 111, 112, 60, 47, 115, 112, 97, 110, 62,60, 47, 115, 116, 114, 111, 110, 103, 62); } } catch(ex) { } } 4.掉底部页面左边的logo,打开根目录下的themes/default文件夹里的style.css文件,找到第433行有个images/logo1.gif替换成你自己的logo,代码如下: 复制代码代码如下: #footer{background:url(images/logo1.gif) no-repeat 5% 50%; padding-left:200px; width:760px; margin:10px auto;} 这样所有的版权都去掉了。

以上方法由办公区教程网编辑摘抄整理自互联网可供大家参考!0sg办公区 - 实用经验教程分享!


标签: 版权echsop

办公区 Copyright © 2016-2023 www.bgqu.net. Some Rights Reserved. 备案号:湘ICP备2020019561号统计代码