去除ecshop v2.7.3頭部 頁腳版權和頁面隨機顯示「Powered by ecshop

1、ecshop 標題中去powered by ecshop \includes\lib_main.php: $page_title = $GLOBALS['_CFG']['shop_title'] . - . Powered by ECShop; 修改成 $page_title = $GLOBALS['_CFG']['shop_title'] ; 2、刪除底部版權:(刪除不當底部php

 1、ecshop標題中去powered by ecshophtml

\includes\lib_main.php:dom

$page_title = $GLOBALS['_CFG']['shop_title'] . ‘ - ‘ . ‘Powered by ECShop’;編輯器

修改成
$page_title = $GLOBALS['_CFG']['shop_title'] ;函數

 

2、刪除底部版權:(刪除不當底部版權會跑)

第一步:打開js/common.js,在txt裏點看右下角,直到顯示的是Ln244.而後從這裏開始刪掉到336行那裏。刪除後保存,
如今打開themes/default/library/ 這裏default爲你當前的主題,找到page_footer.lbi,裏面內容所有刪掉,添加上你想添加的代碼。支持html代碼的。完畢。
另外: 若是你只想簡單的改下就弄第一步就行,而後去\languages\zh_cn 找common.php找到ecshop.com改爲你網址,E CSho p對應改爲你的網站名稱就行,最後去themes\default\images裏把logo1.gif改爲你想要的圖片,也就是左下角的那張.
*********************************************************************
2.7版本加入了JS控制,若是刪除底部版權,則powered by ecshop會處處亂跑網站

用文本編輯器打開js目錄裏的common.js,V2.7.3的在261行-353行的代碼保存退出,
其餘版本的請自行搜索onload = function() 便可定位到spa

onload = function()
{
    var link_arr = document.getElementsByTagName(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)
  {
  }
}

而後找到page_footer.lbi,把 後面的所有刪掉,OK,整個世界清淨了。。
這是隨機在底部產生的!! 直接把這個函數去掉,底部的Powered by ECShop 就沒了!!code

相關文章
相關標籤/搜索