カテゴリー: CMS・ブログツール

【EC-CUBE】SEO対策の続き。GOOGLE MAP用サイトマップ内のURLも変更。

EC-CUBEのサイト内URLをSEO用に静的HTML化した。で、今度は、GOOGLEサイトマップ用のXMLファイル内のリンクも同じように静的HTML化する。

※これは、自サイトの記事(https://bton.papalabs.net/?p=325)で、既に一覧や詳細ページなど全体的な静的HTML化の設定が出来ていることを前提とする。

/data/class/pages/LC_Page_Sitemap.php

を修正。

(Ver.2.3Rc1の場合)
L240

            $page = array(“url” => SITE_URL . sprintf(“%sproducts/list.php?category_id=%d”, $mobile, $result[$i][‘category_id’]));

↓↓↓下記のように変更。

            $page = array(“url” => SITE_URL . sprintf(“%sproducts/list%d.html”, $mobile, $result[$i][‘category_id’]));

L264

            $page = array(“url” => SITE_URL. sprintf(“%sproducts/detail.php?product_id=%d”, $mobile, $result[$i][‘product_id’]),
                          “update_date” => $result[$i][‘update_date’]);

↓↓↓下記のように変更。

            $page = array(“url” => SITE_URL. sprintf(“%sproducts/detail%d.html”, $mobile, $result[$i][‘product_id’]),
                          “update_date” => $result[$i][‘update_date’]);

【EC-CUBE】各種設定

基本的には、管理画面のシステム設定内、パラメータ設定で、値を変えればよい。

パラメータ設定で変わらないとき、該当するファイルは、

/data/mtb_constants_init.php
/data/cache/mtb_constants.php (キャッシュファイル)

を修正すればOK。さらに、phpMyAdminでDBの、mtb_constantsテーブルを探し、該当するフィールドを直接編集すればOK。

  1. メルマガの配信予約をしたいときは、この中の値、MELMAGA_BATCH_MODEをtrureに設定すると配信設定が日時予約画面に変わる。(cronが必要)
  2. 仮会員登録制にする場合は、CUSTOMER_CONFIRM_MAILをtrueに設定する。
  3. カスタマイズ中にエラーの原因を特定したいときは、DEBUG_MODEをtrueにすると、エラーメッセージが表示される。

【EC-CUBE】パンくずリストの実装

VER.2.3RC1の場合。

1)/data/class_extends/helper_extends/SC_Helper_DB_Ex.php の編集。

「class SC_Helper_DB_Ex extends SC_Helper_DB」の中にコードを仕込む。
37行目(”{“と”}”の間)に以下を追加。

 
function sfGetTopicPath($category_id){
// 商品が属するカテゴリIDを縦に取得
$objQuery = new SC_Query();
$arrCatID = $this->sfGetParents($objQuery, “dtb_category”, “parent_category_id”, “category_id”, $category_id);
$TopicPath = ” > “;

// カテゴリー名称を取得する
foreach($arrCatID as $key => $val){
$sql = “SELECT category_name FROM dtb_category WHERE category_id = ?”;
$arrVal = array($val);
$CatName = $objQuery->getOne($sql,$arrVal);
if( $val != $category_id){
$TopicPath .= ‘‘ . $CatName . ‘ > ‘;
}else{
$TopicPath .= $CatName;
}
}

return $TopicPath;
}
function sfGetTopicPath2($category_id){
// 商品が属するカテゴリIDを縦に取得
$objQuery = new SC_Query();
$arrCatID = $this->sfGetParents($objQuery, “dtb_category”, “parent_category_id”, “category_id”, $category_id);
$TopicPath = ” > “;

// カテゴリー名称を取得する
foreach($arrCatID as $key => $val){
$sql = “SELECT category_name FROM dtb_category WHERE category_id = ?”;
$arrVal = array($val);
$CatName = $objQuery->getOne($sql,$arrVal);
$TopicPath .= ‘‘ . $CatName . ‘ > ‘;
}
return $TopicPath;
}

2)/data/class/pages/products/LC_Page_Products_List.php の編集。 (L112に2行追加。)

        // タイトル編集
        $tpl_subtitle = “”;
        if ($_GET[‘mode’] == ‘search’) {
            $tpl_subtitle = “検索結果”;
        } elseif (empty($arrCategory_id[0])) {
            $tpl_subtitle = “全商品”;
        } else {
            $arrFirstCat = $objDb->sfGetFirstCat($arrCategory_id[0]);
            $tpl_subtitle = $arrFirstCat[‘name’];

            $TopicPath = $objDb->sfGetTopicPath($arrCategory_id[0]); ←追加
            $this->tpl_topicpath = $TopicPath; ←追加

        }

 3)/data/class/pages/products/LC_Page_Products_Detail.php の編集。 (L229に2行追加。)

        // サブタイトルを取得
        $arrCategory_id = $objDb->sfGetCategoryId($arrRet[0][‘product_id’], $status);
        $arrFirstCat = $objDb->sfGetFirstCat($arrCategory_id[0]);
        $this->tpl_subtitle = $arrFirstCat[‘name’];

        $arrTopicPath = $objDb->sfGetTopicPath2($arrCategory_id[0]); ←追加
        $this->tpl_topicpath = $arrTopicPath; ←追加

        // 関連カテゴリを取得
        $this->arrRelativeCat = $objDb->sfGetMultiCatTree($tmp_id);

4)パンくずリスト用新規ブロックの追加。

デザイン管理→ブロック編集 で新規ブロックをつくり、下記コードを適当な名前で保存。(ブロック名:「パンくずリスト」、ファイル名:「topicpath」で保存。でも、分かれば、なんでもいい。)

<!–{if $tpl_topicpath != “”}–>
<a href=”<!–{$smarty.const.SITE_URL}–>index.php”>TopPage</a>
<!–{$tpl_topicpath}–>
<!–{$arrProduct.name|escape}–>
<!–{/if}–>

デザイン管理→レイアウト編集 にパンくずリストのブロックが出来ているので、パンくずリストを実装したいページ(一覧ページや詳細ページ)の該当箇所にパンくずリストのブロックを設定すればOK。

参考:http://www.gnnk.net/20080113050103/

注意! 「カテゴリの説明やビジュアルを追加する」とアタる!
下記のやり方で、LC_Page_Products_List_Ex.phpを使用する場合、こちらのパンくず実装を先にやるか、LC_Page_Products_List_Ex.phpで実装しないと、マージされないので注意!すること。
http://www.eccube-school.jp/products/detail43.html

http://www.bton.net46.net/?p=313 (←こっちのほうは、_EXを使ってないので、同じファイルを上書きすることになるから問題ない。でも、本来は、_EXを使ったほうがいいので、_EXのファイルのほうで、パンくずを実装するってほうがいいのかも。メモメモ。)

【EC-CUBE】SEO対策。メタの記載内容を個別ページごとに入れ替える。

EC-CUBEでは、METAタグは、基本設定で一括して決められてしまう(現状仕様)が、商品の個別ページなどは、その商品向けにそれぞれ別途登録したいことも多い。

んで、個別のキーワードやディスクリプションを設定できるようにカスタマイズする。

1)/data/Smarty/templates/site_frame.tpl の<title>タグと、<description>タグと、<keyword>タグを置き換える。

  1. トップページ
    <title>ショップ名 | 基本設定:SEO管理で入力したトップページ用description</title>
    <description>基本設定:SEO管理で入力したトップページ用description</description>
    <keyword>基本設定:SEO管理で入力したトップページ用keyword</keyword>
  2. 商品一覧ページ(カテゴリ未選択時)
    <title>基本設定:SEO管理で入力した商品一覧用description | ショップ名</title>
    <description>基本設定:SEO管理で入力した商品一覧用description</description>
    <keyword>基本設定:SEO管理で入力した商品一覧用keyword</keyword>
  3. 商品一覧ページ(カテゴリ選択時)
    <title>カテゴリ名 | ショップ名</title>
    <description>基本設定:SEO管理で入力した商品一覧ページ用description</description>
    <keyword>基本設定:SEO管理で入力した商品一覧ページ用keyword</keyword>
  4. 商品詳細ページ
    <title>商品名 | ショップ名</title>
    <description>商品登録の「一覧-メインコメント」 </description>
    <keyword>商品登録の「検索ワード」 </keyword>
  5. その他
    <title>ページ名 | ショップ名</title>
    <description>基本設定:SEO管理で入力したdescription</description>
    <keyword>基本設定:SEO管理で入力したkeyword</keyword>

「/data/Smarty/templates/site_frame.tpl」をFTPでダウンロードし、編集。
<title>、<meta name=”description”~ 、<meta name=”keywords”~ の3項目を削除。<meta name=”author” のみ残す。(ver.2.3rc1の場合、34行目あたりから)

<title><!–{$arrSiteInfo.shop_name|escape}–>/<!–{$tpl_title|escape}–></title> ←削除
<meta name=”author” content=”<!–{$arrPageLayout.author|escape}–>” />
<meta name=”description” content=”<!–{$arrPageLayout.description|escape}–>” /> ←削除
<meta name=”keywords” content=”<!–{$arrPageLayout.keyword|escape}–>” /> ←削除

TITLEタグを削除した場所に、下記のコードを追加。

<!–{assign var=top value=”`$smarty.const.URL_DIR`index.php”}–>
<!–{assign var=list value=”`$smarty.const.URL_DIR`products/list.php”}–>
<!–{assign var=detail value=”`$smarty.const.URL_DIR`products/detail.php”}–>

<!–{if $smarty.server.PHP_SELF==$top}–>
<!–トップページ–>
<title><!–{$arrSiteInfo.shop_name}–> | <!–{$arrPageLayout.description|escape}–></title>
<meta name=”description” content=”<!–{$arrPageLayout.description|escape}–>” />
<meta name=”keywords” content=”<!–{$arrPageLayout.keyword|escape}–>” />

<!–{elseif $smarty.server.PHP_SELF==$list}–>
<!–商品一覧ページ–>
<!–{if $tpl_subtitle != “全商品”}–>
<title><!–{$tpl_subtitle}–> | <!–{$arrSiteInfo.shop_name}–></title>
<!–{else}–>
<title><!–{$arrPageLayout.description|escape}–> | <!–{$arrSiteInfo.shop_name}–></title>
<!–{/if}–>
<meta name=”description” content=”<!–{$arrPageLayout.description|escape}–>” />
<meta name=”keywords” content=”<!–{$arrPageLayout.keyword|escape}–>” />

<!–{elseif $smarty.server.PHP_SELF==$detail}–>
<!–商品詳細ページ–>
<title><!–{$tpl_title|escape}–> | <!–{$arrSiteInfo.shop_name}–></title>
<meta name=”description” content=”<!–{$arrProduct.main_list_comment|escape|regex_replace:”/[\r\t\n]/”:””}–>” />
<meta name=”keywords” content=”<!–{if $arrProduct.comment3}–><!–{$arrProduct.comment3|escape|regex_replace:”/[\r\t\n]/”:””|regex_replace:”/、/”:”,”}–>
<!–{/if}–>” />

<!–{else}–>
<!–その他の場合–>
<title><!–{$tpl_title|escape}–> | <!–{$arrSiteInfo.shop_name}–></title>
<meta name=”description” content=”<!–{$arrPageLayout.description|escape}–>” />
<meta name=”keywords” content=”<!–{$arrPageLayout.keyword|escape}–>” />
<!–{/if}–>

 2)/data/class/db/dbfactory/SC_DB_DBFactory_MYSQL.phpを修正する。

“vw_products_allclass_detail” に main_list_commentを追記(mySQLの場合)。
PostgreSQLの場合は、データベースに記録されるようなので、データベース上でフィールドを追加する。

(ver.2.3rc1の場合、438行目あたりから)

“vw_products_allclass_detail” => ‘
    (SELECT product_id,price01_min,price01_max,price02_min,price02_max, stock_min,stock_max,stock_unlimited_min,stock_unlimited_max,del_flg, status,name,comment1,comment2,comment3,main_list_comment,deliv_fee, main_comment,main_image,main_large_image, sub_title1,sub_comment1, sub_image1,sub_large_image1,

    以下省略・・・(※「,」の後ろで半角スペースが入っているところは、実際は入れなくていい。ブログの表示用に便宜上いれてるだけ。)

これで、管理画面の基本情報のなかのSEO設定に入力した、全ページ共通のMETAやタイトルだけではなく、個別の商品情報の中で設定した検索用のキーワードや一覧用の商品説明も、各ページのMETA情報として追加されるようになった。

表示される内容を変えたい場合は、「/data/Smarty/templates/site_frame.tpl」のなかで、表示したい変数を埋め込むようにすればOK。

さらに、2.3バージョンでは、GOOGLE SITEMAP用にサイトマップを書き出せるようになっているので、こちらのサイトマップのURLも静的HTMLで書き出されるように編集しておく。

/data/class/pages/LC_Page_Sitemap.php

$page = array(“url” => SITE_URL . sprintf(“%sproducts/list.php?category_id=%d”, $mobile, $result[$i][‘category_id’]));

これを↓↓↓このように編集。(Ver.2.3Rc1の場合、240行目あたり)

$page = array(“url” => SITE_URL . sprintf(“%sproducts/list%d.html”, $mobile, $result[$i][‘category_id’]));

さらに、

$page = array(“url” => SITE_URL. sprintf(“%sproducts/detail.php?product_id=%d”, $mobile, $result[$i][‘product_id’]),

これを↓↓↓このように編集。(Ver.2.3Rc1の場合、264行目あたり)

$page = array(“url” => SITE_URL. sprintf(“%sproducts/detail%d.html”, $mobile, $result[$i][‘product_id’]),