Kobayashi
yuki-****@kmail*****
2006年 5月 11日 (木) 13:17:37 JST
/catalog/includes/modules/new_products.phpを修正し、 更新商品が「○月の新着商品」に表示されるようにしています。 そして、2つのカテゴリーで登録済みの商品を更新すると 「○月の新着商品」に更新した商品が2つ表示されてしまいます。 これを、1つだけ表示するように変更する方法をお教え願います。 /catalog/includes/modules/new_products.phpの修正は以下のようにしています。 if ( (!isset($new_products_category_id)) || ($new_products_category_id == '0') ) { $new_products_query = tep_db_query("select p.products_id, p.products_image, p.products_tax_class_id, IF(s.status, s.specials_new_products_price, p.products_price) as products_price from " . TABLE_PRODUCTS . " p left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id, " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c, " . TABLE_CATEGORIES . " c where c.categories_status='1' and p.products_id = p2c.products_id and p2c.categories_id = c.categories_id and products_status = '1' order by p.products_last_modified DESC limit " . MAX_DISPLAY_NEW_PRODUCTS); } else { $new_products_query = tep_db_query("select distinct p.products_id, p.products_image, p.products_tax_class_id, IF(s.status, s.specials_new_products_price, p.products_price) as products_price from " . TABLE_PRODUCTS . " p left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id, " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c, " . TABLE_CATEGORIES . " c where c.categories_status='1' and p.products_id = p2c.products_id and p2c.categories_id = c.categories_id and c.parent_id = '" . $new_products_category_id . "' and p.products_status = '1' order by p.products_last_modified DESC limit " . MAX_DISPLAY_NEW_PRODUCTS); } お解りになる方、お教えいただけると幸いです。 -- 小林