バージョン選択

フォーラム

メニュー

オンライン状況

52 人のユーザが現在オンラインです。 (46 人のユーザが フォーラム を参照しています。)
登録ユーザ: 0
ゲスト: 52
もっと...

サイト内検索

質問 > フロント機能 > 全てのレビューを表示させる方法について

フロント機能

新規スレッドを追加する

スレッド表示 | 新しいものから 前のトピック | 次のトピック | 下へ
投稿者 スレッド
sakurai07
投稿日時: 2011/1/31 15:16
対応状況: −−−
長老
登録日: 2008/2/29
居住地:
投稿: 179
Re: トップページに新規レビューを表示させたい
下記に設定してみましたが、設定したブロックからすべて白くなってしまいました。
なんどやっても失敗しています。ご指導お願い致します。


■data/class/pages/frontparts/bloc/
LC_Page_FrontParts_Bloc_news.phpを複製して
LC_Page_FrontParts_Bloc_view.phpに変更。

function lfGetNews(){
$conn = new SC_DBConn();
$sql = "SELECT *, cast(news_date as date) as news_date_disp FROM dtb_news WHERE del_flg = '0' ORDER BY rank DESC";
$list_data = $conn->getAll($sql);
return $list_data;
}


を、

function lfGetReview(){
$conn = new SC_DBConn();
$sql = "SELECT *, cast(substring(create_date,1,10) as date) as review_date_disp FROM dtb_review WHERE del_flg = '0' AND status = '1' ORDER BY create_date DESC";
$list_data = $conn->getAll($sql);
return $list_data;
}
に変更。




■data/class_extends/page_extends/frontparts/bloc/
LC_Page_FrontParts_Bloc_News_Ex.phpを複製して
LC_Page_FrontParts_Bloc_view_Ex.phpに変更

require_once(CLASS_PATH . "pages/frontparts/bloc/LC_Page_FrontParts_Bloc_News.php");

を、

require_once(CLASS_PATH . "pages/frontparts/bloc/LC_Page_FrontParts_Bloc_view.php");変更



■html/user_data/packages/
管理画面から、viewとして新規作成。

■html/frontparts/bloc/
news.phpをview.phpに変更

require_once(CLASS_EX_PATH . "page_extends/frontparts/bloc/LC_Page_FrontParts_Bloc_News_Ex.php");



require_once(CLASS_EX_PATH . "page_extends/frontparts/bloc/LC_Page_FrontParts_Bloc_view_Ex.php");に変更。


■php_path
frontparts/bloc/view.phpに設定。
habu
投稿日時: 2011/1/31 16:54
対応状況: −−−
長老
登録日: 2006/9/15
居住地:
投稿: 282
Re: トップページに新規レビューを表示させたい
sakurai07さん

■LC_Page_FrontParts_Bloc_view.php の62,63行目は変更済みでしょうか?

        //新着情報取得
        $this->arrNews = $this->lfGetNews();



        //新着レビュー取得
        $this->arrNews = $this->lfGetReview();


■また、管理画面「デザイン管理」→「ブロック編集」→news.tpl の中にある、
「$arrNews[data].news_date_disp」等の記述は変更済みでしょうか。
-----
・news_date_disp → review_date_disp
・news_url → 必要なら、商品ページに遷移する様に変更
・news_title → title
・news_comment → comment
-----


----------------
株式会社システムフレンド
羽生 賢太郎(Kentaro Habu)
改造専門店・EC-CUBE工房

sakurai07
投稿日時: 2011/1/31 19:54
対応状況: −−−
長老
登録日: 2008/2/29
居住地:
投稿: 179
Re: トップページに新規レビューを表示させたい
ご返信ありがとうございます。

設定してみましたが、新着情報が表示されてしまってしまいました。

管理画面のソースは下記になります。

<div id="newsarea">
<h2><img src="<!--{$smarty.const.URL_DIR}-->img01/news.jpg" width="700" height="43" alt="新着情報" /></h2>

<p>☆★☆ 新着情報は<a href="<!--{$smarty.const.URL_DIR}-->rss/index.php" target="_blank">RSS</a>で配信しています。★☆★</p>
<!--{section name=data loop=$arrNews}--><dl>
<dt><!--{$arrNews[data].review_date_disp|date_format:"%Y年%m月%d日"}--></dt>
<dd>
<!--{if $arrNews[data].news_url}-->
<!--{if $arrNews[data].link_method eq "2"}-->
target="_blank"
<!--{/if}-->>
<!--{/if}-->
<!--{$arrNews[data].title|escape|nl2br}-->
<!--{$arrNews[data].title
|escape|nl2br}-->
href="<!--{$arrNews[data].news_url}-->"
<!--{if $arrNews[data].link_method eq "2"}-->
target="_blank"
<!--{/if}-->>
<!--{/if}-->
<!--{$arrNews[data].title|escape|nl2br}-->
<!--{if $arrNews[data].news_url}-->
</a>
<!--{/if}--><br />
<!--{$arrNews[data].comment|escape|nl2br}-->
</dd>
</dl>
<!--{/section}-->
</div>


■LC_Page_FrontParts_Bloc_view.php
/httpdocs/data/class/pages/frontparts/bloc



<?php
/*
* This file is part of EC-CUBE
*
* Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved.
*
* http://www.lockon.co.jp/
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/

// {{{ requires
require_once(CLASS_PATH . "pages/frontparts/bloc/LC_Page_FrontParts_Bloc.php");

/**
* 新着情報 のページクラス.
*
* @package Page
* @author LOCKON CO.,LTD.
* @version $Id:LC_Page_FrontParts_Bloc_News.php 15532 2007-08-31 14:39:46Z nanasess $
*/
class LC_Page_FrontParts_Bloc_view extends LC_Page_FrontParts_Bloc {

// }}}
// {{{ functions

/**
* Page を初期化する.
*
* @return void
*/
function init() {
parent::init();
$bloc_file = 'view.tpl';
$this->setTplMainpage($bloc_file);
}

/**
* Page のプロセス.
*
* @return void
*/
function process() {
if (defined("MOBILE_SITE") && MOBILE_SITE) {
$objSubView = new SC_SiteView();
} else {
$objSubView = new SC_MobileView();
}

//新着レビュー取得
$this->arrNews = $this->lfGetReview();

$objSubView->assignobj($this);
$objSubView->display($this->tpl_mainpage);
}


/**
* モバイルページを初期化する.
*
* @return void
*/
function mobileInit() {
$this->tpl_mainpage = MOBILE_TEMPLATE_DIR . "frontparts/"
. BLOC_DIR . 'news.tpl';
}

/**
* Page のプロセス(モバイル).
*
* @return void
*/
function mobileProcess() {
$this->process();
}

/**
* デストラクタ.
*
* @return void
*/
function destroy() {
parent::destroy();
}

function lfGetReview(){
$conn = new SC_DBConn();
$sql = "SELECT *, cast(substring(create_date,1,10) as date) as review_date_disp FROM dtb_review WHERE del_flg = '0' AND status = '1' ORDER BY create_date DESC";
$list_data = $conn->getAll($sql);
return $list_data;
}
}
?>


■LC_Page_FrontParts_Bloc_view_Ex.php
/httpdocs/data/class_extends/page_extends/frontparts/bloc


<?php
/*
* This file is part of EC-CUBE
*
* Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved.
*
* http://www.lockon.co.jp/
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/

// {{{ requires
require_once(CLASS_PATH . "pages/frontparts/bloc/LC_Page_FrontParts_Bloc_view.php");

/**
* 新着情報 のページクラス(拡張).
*
* LC_Page_FrontParts_Bloc_News をカスタマイズする場合はこのクラスを編集する.
*
* @package Page
* @author LOCKON CO.,LTD.
* @version $Id: LC_Page_FrontParts_Bloc_News_Ex.php 16741 2007-11-08 00:43:24Z adachi $
*/
class LC_Page_FrontParts_Bloc_view_Ex extends LC_Page_FrontParts_Bloc_view {

// }}}
// {{{ functions

/**
* Page を初期化する.
*
* @return void
*/
function init() {
parent::init();
}

/**
* Page のプロセス.
*
* @return void
*/
function process() {
parent::process();
}

/**
* デストラクタ.
*
* @return void
*/
function destroy() {
parent::destroy();
}
}
?>

■view.php
/httpdocs/frontparts/bloc


<?php
/*
* This file is part of EC-CUBE
*
* Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved.
*
* http://www.lockon.co.jp/
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
// {{{ requires
require_once(CLASS_EX_PATH . "page_extends/frontparts/bloc/LC_Page_FrontParts_Bloc_view_Ex.php");

// }}}
// {{{ generate page

$objPage = new LC_Page_FrontParts_BLoc_view_Ex();
register_shutdown_function(array($objPage, "destroy"));
$objPage->init();
$objPage->process();
?>



間違った記述ありますでしょうか?

ご指導宜しくお願いたします。
habu
投稿日時: 2011/2/1 14:56
対応状況: −−−
長老
登録日: 2006/9/15
居住地:
投稿: 282
Re: トップページに新規レビューを表示させたい
sakurai07さん

空の行が幾つか表示されたのではなく
新着情報が表示されたというのは解せないのですが、
気になった点をお伝えします。

引用:

sakurai07さんは書きました:
管理画面のソースは下記になります。


↑で変更されたのは、view.tplでしょうか、
それとも、news.tplでしょうか。

これまで、news.tplを利用されるものと考えていたのですが、
data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc_view.php
の46行目付近で、
$bloc_file = 'view.tpl';

となっているので、
news.tplではなく、view.tplが変更されているか確認してみてください。


----------------
株式会社システムフレンド
羽生 賢太郎(Kentaro Habu)
改造専門店・EC-CUBE工房

sakurai07
投稿日時: 2011/2/1 22:56
対応状況: −−−
長老
登録日: 2008/2/29
居住地:
投稿: 179
Re: トップページに新規レビューを表示させたい
view.tplに
<!--{*
* This file is part of EC-CUBE
*
* Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved.
*
* http://www.lockon.co.jp/
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*}-->
<div id="newsarea">
<h2><img src="<!--{$smarty.const.URL_DIR}-->img01/news.jpg" width="700" height="43" alt="新着情報" /></h2>

<p>☆★☆ 新着情報は<a href="<!--{$smarty.const.URL_DIR}-->rss/index.php" target="_blank">RSS</a>で配信しています。★☆★</p>
<!--{section name=data loop=$arrNews}--><dl>
<dt><!--{$arrNews[data].review_date_disp|date_format:"%Y年%m月%d日"}--></dt>
<dd>
<!--{if $arrNews[data].news_url}-->
<a href="<!--{$arrNews[data].news_url}-->"
<!--{if $arrNews[data].link_method eq "2"}-->
target="_blank"
<!--{/if}-->>
<!--{/if}-->
<!--{$arrNews[data].title|escape|nl2br}-->
<!--{if $arrNews[data].news_url}-->
</a>
<!--{/if}--><br />
<!--{$arrNews[data].comment|escape|nl2br}-->
</dd>
</dl>
<!--{/section}-->
</div>
を、設定したのですが、何も変更されませんでした。

試しに、news.tplに

<!--{*
* This file is part of EC-CUBE
*
* Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved.
*
* http://www.lockon.co.jp/
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*}-->
<div id="newsarea">
<h2><img src="<!--{$smarty.const.URL_DIR}-->img01/news.jpg" width="700" height="43" alt="新着情報" /></h2>

<p>☆★☆ 新着情報は<a href="<!--{$smarty.const.URL_DIR}-->rss/index.php" target="_blank">RSS</a>で配信しています。★☆★</p>
<!--{section name=data loop=$arrNews}--><dl>
<dt><!--{$arrNews[data].review_date_disp|date_format:"%Y年%m月%d日"}--></dt>
<dd>
<!--{if $arrNews[data].news_url}-->
<a href="<!--{$arrNews[data].news_url}-->"
<!--{if $arrNews[data].link_method eq "2"}-->
target="_blank"
<!--{/if}-->>
<!--{/if}-->
<!--{$arrNews[data].title|escape|nl2br}-->
<!--{if $arrNews[data].news_url}-->
</a>
<!--{/if}--><br />
<!--{$arrNews[data].comment|escape|nl2br}-->
</dd>
</dl>
<!--{/section}-->
</div>
を、入力すると、なんと変わったのですがすべて空白です。

データベースのphp_pathは下記になります。

27 ブロック名 bloc/view.tpl view 2011-01-31 14:47:23.500537 2011-01-31 19:44:03.079493 frontparts/bloc/view.php
sakurai07
投稿日時: 2011/2/3 0:17
対応状況: −−−
長老
登録日: 2008/2/29
居住地:
投稿: 179
Re: トップページに新規レビューを表示させたい
■調べた結果

最初のデータに戻しまして、最初から順に試してみました。

最初の段階で間違っているようでした。

view.phpの

<?php
/*
* This file is part of EC-CUBE
*
* Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
*
* http://www.lockon.co.jp/
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
// {{{ requires
require_once(CLASS_EX_PATH . "page_extends/frontparts/bloc/LC_Page_FrontParts_Bloc_News_Ex.php");

// }}}
// {{{ generate page

$objPage = new LC_Page_FrontParts_BLoc_News_Ex();
register_shutdown_function(array($objPage, "destroy"));
$objPage->init();
$objPage->process();
?>

を、

require_once(CLASS_EX_PATH . "page_extends/frontparts/bloc/LC_Page_FrontParts_Bloc_View_Ex.php");

に変更した時点で、その下が表示されていませんでした。

LC_Page_FrontParts_Bloc_View_Ex.phpは、

LC_Page_FrontParts_Bloc_News_Ex.phpをコピーしたのですが、何か間違っているのでしょうか?


アドバイス頂けたらすごく助かります。

宜しくお願いたします。
habu
投稿日時: 2011/2/4 11:18
対応状況: −−−
長老
登録日: 2006/9/15
居住地:
投稿: 282
Re: トップページに新規レビューを表示させたい
sakurai07 さん

どこが間違っているかはちょっと分からなかったので、
手順をざっくりまとめてみました。

※【追記】幾つか誤っている手順がありましたので、変更して投稿しなおしました。(修正部分を赤字にしています)
恐らく、問題になっているのは赤字で記している部分周りではないかと考えています。


よかったら、この手順に沿ってもう一度確認してみてください。

【Step.1】新着レビューブロックを作成

管理画面(デザイン管理→ブロック編集)から、
・ブロック名:「NEW REVIEW」(←分かればなんでも良いが、後ほどphpMyAdminで確認する時に文字化けする場合があるので英語表記にしておく)
・ファイル名:「view」(view.tpl)
としてブロックを新規作成。

ブロックの内容は、「新着情報」(news.tpl)を基に、以下の様にする。
<!--{*
 * This file is part of EC-CUBE
 * (説明のため、ライセンス表記部分は省略しています)
 *}-->
<div id="newsarea">
  <h2>
    <img src="<!--{$TPL_DIR}-->img/top/news.jpg" width="400" height="29" alt="新着レビュー" />
  </h2>

  <p>☆★☆ 新着レビューブロックです★☆★</p>

<!--{section name=data loop=$arrNews}-->
  <dl>
    <dt><!--{$arrNews[data].review_date_disp|date_format:"%Y/%m/%d"}--></dt>
    <dd>
      <a href="<!--{$smarty.const.URL_DIR}-->products/detail.php?product_id=<!--{$arrNews[data].product_id}-->">
        <!--{$arrNews[data].title|escape|nl2br}-->
      </a><br />
      by <!--{$arrNews[data].reviewer_name|escape|nl2br}-->さん(★<!--{$arrNews[data].recommend_level|escape|nl2br}-->つ)<br />
      <!--{$arrNews[data].comment|escape|nl2br}-->
     </dd>
  </dl>
<!--{/section}-->
</div>
(ファイルは、 html/user_data/packages/default/bloc/view.tpl として作成されています)


【Step.2】view.phpの作成

クラスの名前を、以下の通り変更しています。
・LC_Page_FrontParts_Bloc_view → LC_Page_FrontParts_Bloc_Review
・LC_Page_FrontParts_Bloc_view_Ex → LC_Page_FrontParts_Bloc_Review_Ex


html/frontparts/bloc/news.phpをコピーして、
view.phpを作成し、内容を以下の通り変更する。

■requireの変更
require_once(CLASS_EX_PATH . "page_extends/frontparts/bloc/LC_Page_FrontParts_Bloc_News_Ex.php");
   ↓↓↓
require_once(CLASS_EX_PATH . "page_extends/frontparts/bloc/LC_Page_FrontParts_Bloc_Review_Ex.php");

■利用するクラスの変更
$objPage = new LC_Page_FrontParts_BLoc_News_Ex();
   ↓↓↓
$objPage = new LC_Page_FrontParts_BLoc_Review_Ex();


【Step.3】(view.phpから読み込まれる)LC_Page_FrontParts_Bloc_Review_Ex.phpの作成

data/class_extends/page_extends/frontparts/bloc/LC_Page_FrontParts_Bloc_News_Ex.phpをコピーして
LC_Page_FrontParts_Bloc_Review_Ex.phpを作成し、内容を以下の通り変更する。

■requireの変更
require_once(CLASS_PATH . "pages/frontparts/bloc/LC_Page_FrontParts_Bloc_News.php");
   ↓↓↓
require_once(CLASS_PATH . "pages/frontparts/bloc/LC_Page_FrontParts_Bloc_Review.php");

■クラス定義の変更
class LC_Page_FrontParts_Bloc_News_Ex extends LC_Page_FrontParts_Bloc_News {
   ↓↓↓
class LC_Page_FrontParts_Bloc_Review_Ex extends LC_Page_FrontParts_Bloc_Review {



【Step.4】(LC_Page_FrontParts_Bloc_Review_Ex.phpから読み込まれる)LC_Page_FrontParts_Bloc_Review.phpの作成

data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc_news.phpをコピーして
LC_Page_FrontParts_Bloc_Review.phpを作成し、内容を以下の通り変更する。

■クラス定義の変更
class LC_Page_FrontParts_Bloc_News extends LC_Page_FrontParts_Bloc {
   ↓↓↓
class LC_Page_FrontParts_Bloc_Review extends LC_Page_FrontParts_Bloc {


■news.tpl→view.tpl
    function init() {
        parent::init();
        $bloc_file = 'news.tpl';
        $this->setTplMainpage($bloc_file);
    }
   ↓↓↓
    function init() {
        parent::init();
        $bloc_file = 'view.tpl';
        $this->setTplMainpage($bloc_file);
    }

■lfGetNews() → lfGetReview()
        //新着情報取得
        $this->arrNews = $this->lfGetNews();
   ↓↓↓
        //新着コメント一覧取得
        $this->arrNews = $this->lfGetReview();

■SQL変更(新着レビューを最大5件まで表示させる)
    function lfGetNews(){
        $conn = new SC_DBConn();
        $sql = "SELECT *, cast(news_date as date) as news_date_disp FROM dtb_news WHERE del_flg = '0' ORDER BY rank DESC";
        $list_data = $conn->getAll($sql);
        return $list_data;
    }
   ↓↓↓
    function lfGetReview(){
        $conn = new SC_DBConn();
        $sql = "SELECT *, cast(create_date as date) as review_date_disp FROM dtb_review WHERE del_flg = '0' AND status = '1' ORDER BY create_date DESC LIMIT 5";
        $list_data = $conn->getAll($sql);
        return $list_data;
    }



【Step.5】新着レビューブロックと、view.phpを結びつける
DBのデータを変更するツール(phpMyAdminなど)を利用して、
「dtb_bloc」テーブルの、filenameが「view」(bloc_nameが「NEW REVIEW」)のレコードについて、
php_pathを「frontparts/bloc/view.php」にする。

これで、「NEW REVIEW」ブロック表示時に、以下のファイルが読み込まれる様になります。
html/frontparts/bloc/view.php

【Step.6】新着レビューブロックをページに配置する
管理画面(デザイン管理→レイアウト編集)で、「NEW REVIEW」ブロックをページに配置する。

以上です。
これで、新着レビューブロックを配置したページに、新着レビューが表示されると思います。


----------------
株式会社システムフレンド
羽生 賢太郎(Kentaro Habu)
改造専門店・EC-CUBE工房

sakurai07
投稿日時: 2011/2/5 13:26
対応状況: −−−
長老
登録日: 2008/2/29
居住地:
投稿: 179
Re: トップページに新規レビューを表示させたい
できました!感動です!

habuさん本当にありがとうございます。

感謝です!STEP4が新着のままのデータが残っていた可能性あります。

あと希望としては、商品ページにリンクができたら嬉しいです。

下記を試してみましたがうまく推移しなかったです。

ご指導くださいませ。

<div id="newsarea">
<h2>
<img src="<!--{$TPL_DIR}-->img/top/news.jpg" width="400" height="29" alt="新着レビュー" />
</h2>

<p>☆★☆ 新着レビューブロックです★☆★</p>

<!--{section name=data loop=$arrNews}-->
<dl>
<dt><!--{$arrNews[data].review_date_disp|date_format:"%Y/%m/%d"}--></dt>
<dd><a href="<!--{$smarty.const.URL_DIR}-->products/detail<!--{$arrBestProducts[cnt].product_id}-->.html">
<!--{$arrNews[data].title|escape|nl2br}-->
<!--{if $arrNews[data].title}-->
</a>
<!--{/if}--><br />
<!--{$arrNews[data].comment|escape|nl2br}-->
</dd>
</dl>
<!--{/section}-->
</div>


■疑問
レビューはまだ20件ほどですが、例えば1000件になったらどのように表示されますか?

表示件数指定することは可能なのでしょうか?
habu
投稿日時: 2011/2/7 18:42
対応状況: −−−
長老
登録日: 2006/9/15
居住地:
投稿: 282
Re: トップページに新規レビューを表示させたい
sakurai07 さん

おぉぉ!良かったです!お疲れさまでした!

商品ページへのリンクですが、以下を試してみてください。
レビュー投稿者名と、評価(星の数)の表示も追加しています。
(すみません、前回の投稿に間違いがありましたので、前回の投稿も修正しました)
<!--{section name=data loop=$arrNews}-->
  <dl>
    <dt><!--{$arrNews[data].review_date_disp|date_format:"%Y/%m/%d"}--></dt>
    <dd>
      <a href="<!--{$smarty.const.URL_DIR}-->products/detail.php?product_id=<!--{$arrNews[data].product_id}-->">
        <!--{$arrNews[data].title|escape|nl2br}-->
      </a><br />
      by <!--{$arrNews[data].reviewer_name|escape|nl2br}-->さん(★<!--{$arrNews[data].recommend_level|escape|nl2br}-->つ)<br />
      <!--{$arrNews[data].comment|escape|nl2br}-->
     </dd>
  </dl>
<!--{/section}-->


ちなみに、上記以外に何を表示できるかについては、
「<p>☆★☆ 新着レビューブロックです★☆★</p>」の下に
「<!--{debug output='html'}-->」と書くと確認できます。

(これを書くとエラーが発生する様になる場合は、以下のスレッドが参考になります)
http://xoops.ec-cube.net/modules/newbb/viewtopic.php?topic_id=5321&forum=2&post_id=25873


引用:
■疑問
レビューはまだ20件ほどですが、例えば1000件になったらどのように表示されますか?

表示件数指定することは可能なのでしょうか?

現状では、全件表示されると思います。
表示件数を限りたい場合は、SQL文の最後にLIMIT句を追加してみてください。

LC_Page_FrontParts_Bloc_Review.php
$sql = "SELECT *, cast(create_date as date) as review_date_disp FROM dtb_review WHERE del_flg = '0' AND status = '1' ORDER BY create_date DESC LIMIT 5";


----------------
株式会社システムフレンド
羽生 賢太郎(Kentaro Habu)
改造専門店・EC-CUBE工房

sakurai07
投稿日時: 2011/2/8 11:05
対応状況: −−−
長老
登録日: 2008/2/29
居住地:
投稿: 179
Re: トップページに新規レビューを表示させたい
habuさん、素敵です。

ありがとうございます。

本当に助かりました。やぁ〜っと、スッキリしました。

本当に本当にありがとうございます。
« 1 (2) 3 »
スレッド表示 | 新しいものから 前のトピック | 次のトピック | トップ


 



ログイン


EC-CUBE公式 Amazon Payプラグイン

統計情報

総メンバー数は88,870名です
総投稿数は109,999件です

投稿数ランキング

1
seasoft
7367
2
468
3217
3
AMUAMU
2712
4
nanasess
2313
5
umebius
2085
6
yuh
1819
7
h_tanaka
1646
8
red
1570
9
mcontact
1295
10
tsuji
958
11
fukap
907
12
shutta
835
13
tao_s
799
14 ramrun 789
15 karin 689
16 sumida 641
17
homan
633
18 DELIGHT 572
19
patapata
502
20
flealog
485


ネットショップの壺

EC-CUBEインテグレートパートナー

Copyright© EC-CUBE CO.,LTD. All Rights Reserved.