zencart:商品リストにnew
Posted on 日曜日, 6 月 28th, 2009 at 7:45 PMzencartにて 商品リストにも newを・・・。
新着商品やおすすめ商品同様 商品リストにも
/includes/modules/pages/index/main_template_vars.php
172行目 青字を追加する。
// always add quantity regardless of whether or not it is in the listing for add to cart buttons
if (PRODUCT_LIST_QUANTITY < 1) {
$select_column_list .= 'p.products_quantity, '.'p.products_date_added ,';
}
検索結果は
/includes/modules/pages/advanced_search_result/header_php.php
$select_str = "SELECT DISTINCT " . $select_column_list .
" m.manufacturers_id, products_date_added,p.products_id, pd.products_name, p.products_price, p.products_tax_class_id, p.products_price_sorter ";
--------------
includes/modules/テンプレート/product_listing.php
に 新着商品での追加 と同様の処理を。
関連記事
Leave a reply