Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Change Admin Home Page?


jsi

Recommended Posts

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

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

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...