Forums / Customization from the Admin / Admin Home layout question

Admin Home layout question

Locked
Results 1 to 6 of 6
This thread is locked. New replies are disabled.
30 Apr 2007, 13:40
#1
paradigm81 avatar

paradigm81

New Zenner

Join Date:
Aug 2006
Posts:
35
Plugin Contributions:
0

Admin Home layout question

From the Admin Home area, I have information displayed at quick glance as in New Customers, New Orders, and various Statistics.

I really would like to increase the amount of New Orders displayed from the five that it shows. It bumps them off from recent orders. Is there a place this can be changed?

In addition, is there a place that I can edit what shows up on here, maybe there is something else I would like to see at quick glance?

Thanks!
:dontgetit
30 Apr 2007, 13:47
#2
haredo avatar

haredo

Totally Zenned

Join Date:
Apr 2006
Posts:
6,171
Plugin Contributions:
0

Re: Admin Home layout question

Paradigm81:

I would really would like to increase the amount of New Orders displayed from the five that it shows.


Use your developers tool kit and look up new orders.
1. Look for a file in admin
2. Look at code and find products displayed 5 and change to want you want

I have not downloaded the contribution, but this tool is in admin/tools
30 Apr 2007, 13:52
#3
get_em_fast avatar

get_em_fast

Totally Zenned

Join Date:
Dec 2006
Posts:
2,072
Plugin Contributions:
1

Re: Admin Home layout question

Try looking at Admin>configuration>Maximum Values>Maximum Orders Detail Display on Admin Orders Listing.
Isn't that it?
0=unlimited
30 Apr 2007, 14:58
#4
paradigm81 avatar

paradigm81

New Zenner

Join Date:
Aug 2006
Posts:
35
Plugin Contributions:
0

Re: Admin Home layout question

Get Em Fast:

Try looking at Admin>configuration>Maximum Values>Maximum Orders Detail Display on Admin Orders Listing.
Isn't that it?
0=unlimited


Mine is set at 0 so I don't believe this is the same. The response from previous poster seems to be accurate, it's in the hosting control panel code.
30 Apr 2007, 15:17
#5
paradigm81 avatar

paradigm81

New Zenner

Join Date:
Aug 2006
Posts:
35
Plugin Contributions:
0

Re: Admin Home layout question

haredo:

Use your developers tool kit and look up new orders.
1. Look for a file in admin
2. Look at code and find products displayed 5 and change to want you want

I have not downloaded the contribution, but this tool is in admin/tools


I cannot get any results searching for "new orders" to locate where to change, i've tried variations to find where to change the quantity, but no luck. Thanks anyway....
17 Nov 2007, 15:58
#6
rasyr avatar

rasyr

Zen Follower

Join Date:
Aug 2006
Posts:
233
Plugin Contributions:
0

Re: Admin Home layout question

The number of orders shown on the admin home page is set in the sql statement found on (approximately) line 165 of the index.php file in the admin folder.

At the end of this statement, it says

...DESC limit 5");

You can change that 5 to any other number you wish (I changed it to a 10).

I also put in a link around that table header (line 164 - approximately).

Changing
<?php echo BOX_ENTRY_NEW_ORDERS; ?>
to
<a href="orders.php"><?php echo BOX_ENTRY_NEW_ORDERS; ?></a>

So that it provides a quick link to the Customers|Orders page.