ecshop title優化

剛用ecshop新作了個商城,收集了很多title優化,分享下php

 

網站首頁標題顯示的是爲ECSHOP管理中心的[商店標題]。而頻道頁面,顯示的是[頻道名+商店名稱]。固然商品頁面顯示的是[商品名+商店名稱]dom

第一步,去掉標題上的Powered byEcshop字樣。在includes/lib_main.php找到lib_main.php文件,去掉下面這段代碼。
. ‘ - ‘ . ‘Powered by ECShop’post

第二步,打開模板文件夾的goods.dwt文件,找到{$page_title},將它修改成{$goods.goods_style_name}_{$shop_name}優化

第三步,找到includes/lib_main.php第143行。將
$page_title=$GLOBALS['_CFG']['shop_title'];
改成
$page_title=$GLOBALS['_CFG']['shop_name'];網站

而後找到241行左右,找到下面這樣的代碼
if (!empty($str))
{
$page_title  = $str . '_' . $page_title;
$ur_here .= '<code>&gt;</code>' . $str;
}

咱們須要在這段代碼的前面,加入
if ($filename == 'index')$page_title=$GLOBALS['_CFG']['shop_title'];
這段代碼便可。spa

 

 

 

去除底部的'Powered by ECShop';.net

不少朋友想直接刪除themes/default/library/page_footer.lbi文件中的代碼:{foreach from=$lang.p_y item=pv}{$pv}{/foreach}{$licensed}<br/> ,然而刪除後'Powered by ECShop'就會在網頁中亂跑,故而沒法實現咱們的效果。插件

打開js/common.js文件;code

將該文件第261行到第353行代碼刪除:blog

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)
  {
  }
} 

 

 

 

ECSHOP篩選屬性修改title標題

 

 

 

發現百度蜘蛛爬行網站時會爬行屬性連接,並且會進行收錄。但是ecshop系統製做的網站,在分類頁點擊屬性篩選出產品時,網頁title不會改變。這樣就會形成大量title同樣的頁面,不利於優化。爲此,在網上查找ECSHOP篩選屬性修改title的插件,大部分都是收費的。在這裏把本身想到的修改辦法分享給你們。

須要修改category.php文件,在這個文件查找到

foreach ($cat_filter_attr AS $key => $value)

在其前面加上一句代碼

$shuxing_name = "";

查找

$all_attr_list[$key]['attr_list'][$temp_key]['selected'] = 1;

在後面加上

$shuxing_name.=$all_attr_list[$key]['attr_list'][$temp_key]['attr_value'];

查找

$smarty->assign('page_title', $position['title']);

改成

複製代碼
if($shuxing_name!="")
{
$shuxing_name.="_".$position['title'];
}
else
{
$shuxing_name=$position['title'];
}
$smarty->assign('page_title', $shuxing_name);
複製代碼

這樣就能夠實現篩選屬性自動修改title標題了。

 

 

 

好了,ecshop的title優化基本完了;還有遺忘了等我想起再補充

詳細的優化效果可看看我新作的鋼筆商城——千筆閣

原文地址:http://blog.csdn.net/yeypnet/article/details/24148205

相關文章
相關標籤/搜索