View Single Post
  #1  
Old 05-15-2004, 02:35 AM
 
arabayaservis.com arabayaservis.com is offline
 

Member
  
Join Date: Nov 2003
Posts: 10
 

Default 3.5.7 Product Sort Solution

customer/products.php


old;
Code:
$products = func_search_products($search_query, !empty($user_account['membership'])?$user_account['membership']:"", $first_page,$current_category["product_count"]);

new:
Code:
$products = func_search_products($search_query, !empty($user_account['membership'])?$user_account['membership']:"", $first_page,$current_category["product_count"],0,$orderby);

old;
Code:
$smarty->assign("products",$products);

new
Code:
$smarty->assign("orderby",$orderby); $smarty->assign("products",$products);


customer/home.php?cat=105&orderby=price

you will see sorting products
Reply With Quote