products_reviews_write.php
レビュー入力
(21行目)
$customer = tep_db_query(”select customers_firstname, customers_lastname from ” . TABLE_CUSTOMERS . ” where customers_id = ’” . $customer_id . “’”);
↓ (・・・検索の際、取得する項目にニックネームを追加。)
$customer = tep_db_query(”select customers_firstname, customers_lastname, customers_hn from ” . TABLE_CUSTOMERS . ” where customers_id = ’” . $customer_id . “’”);
(24行目)
tep_db_query(”insert into ” . TABLE_REVIEWS . ” (products_id, customers_id, customers_name, customers_hn, reviews_rating, date_added) values (’” . $_GET[’products_id’] . “’, ’” . $customer_id . “’, ’” . addslashes($customer_values[’customers_lastname’]) . ’ ’ . addslashes($customer_values[’customers_firstname’]) . “’, ’” . $_POST[’rating’] . “’, now())”);
↓ (・・・登録の際、ニックネームの設定を追加。)
tep_db_query(”insert into ” . TABLE_REVIEWS . ” (products_id, customers_id, customers_name, customers_hn, reviews_rating, date_added) values (’” . $_GET[’products_id’] . “’, ’” . $customer_id . “’, ’” . addslashes($customer_values[’customers_lastname’]) . ’ ’ . addslashes($customer_values[’customers_firstname’]) . “’, ’”.addslashes($customer_values[’customers_hn’]). “’, ’” . $_POST[’rating’] . “’, now())”);
(47行目)
$customer = tep_db_query(”select customers_firstname, customers_lastname from ” . TABLE_CUSTOMERS . ” where customers_id = ’” . $customer_id . “’”);
↓ (・・・検索の際、取得する項目にニックネームを追加。)
$customer = tep_db_query(”select customers_firstname, customers_lastname, customers_hn from ” . TABLE_CUSTOMERS . ” where customers_id = ’” . $customer_id . “’”);
(117行目)
<td class=”main”><b><?php echo SUB_TITLE_FROM; ?></b> <?php echo $customer_values[’customers_lastname’] . ’ ’ . $customer_values[’customers_firstname’]; ?></td>
↓ (・・・レビュー記入者情報で、ニックネームを優先的にひょうじする。)
<td class=”main”><b><?php echo SUB_TITLE_FROM; ?></b> <?php echo $customer_values[’customers_hn’]?$customer_values[’customers_hn’].”(”.$customer_values[’customers_lastname’] . ’ ’ . $customer_values[’customers_firstname’].”)”:$customer_values[’customers_lastname’] . ’ ’ . $customer_values[’customers_firstname’]; ?></td>
products_reviews_write.php(26行目)
レビュー入力注意書き
define(’TEXT_NO_HTML’, ’<small><font color=”#ff0000″><b>注:</b></font></small> HTML は使用できません’);
↓ (・・・レビュー記入者情報で、ニックネームを優先的にひょうじする。)
define(’TEXT_NO_HTML’, ’<small><font color=”#ff0000″><b>注:</b></font></small> HTML は使用できません!<br><br>※ニックネームが登録されている場合は、本名は表示されません。’);
※注意 シングルクォーテーションは、全角にしています。
TrackBack URI : http://njcfactory.com/bbg/wp-trackback.php?p=53
Comments (0)