jsi Posted February 21, 2009 Share Posted February 21, 2009 When I login to Admin, It shows the latest customers and orders. However it only shows 5. How do I change this? I would like to show the latest 25 customers and orders. Thanx. mmmmmmmmmmmm. Doughnuts . . . haha. i said nuts. Link to comment Share on other sites More sharing options...
Guest Posted February 21, 2009 Share Posted February 21, 2009 When I login to Admin, It shows the latest customers and orders. However it only shows 5. How do I change this? I would like to show the latest 25 customers and orders. Thanx. catalog/admin/includes/modules/index/customers.php at about line 20 find: $customers_query = tep_db_query("select c.customers_id, c.customers_lastname, c.customers_firstname, ci.customers_info_date_account_created from " . TABLE_CUSTOMERS . " c, " . TABLE_CUSTOMERS_INFO . " ci where c.customers_id = ci.customers_info_id order by ci.customers_info_date_account_created desc limit 6"); and change the 6 to how many you want to show. It will be the same proccess for the orders just different file. SJC Link to comment Share on other sites More sharing options...
jsi Posted February 21, 2009 Author Share Posted February 21, 2009 catalog/admin/includes/modules/index/customers.php at about line 20 find: $customers_query = tep_db_query("select c.customers_id, c.customers_lastname, c.customers_firstname, ci.customers_info_date_account_created from " . TABLE_CUSTOMERS . " c, " . TABLE_CUSTOMERS_INFO . " ci where c.customers_id = ci.customers_info_id order by ci.customers_info_date_account_created desc limit 6"); and change the 6 to how many you want to show. It will be the same proccess for the orders just different file. SJC Awesome!! Thanx. :lol: mmmmmmmmmmmm. Doughnuts . . . haha. i said nuts. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.