Although this hasn't always been the case (especially when setting-up or tweaking the ISC configuration)... now that I'm settled-in with my store's configuration and settings, the most common task that I now perform is with customer orders.
So, I wanted to bypass the Home Page, and have the login take me DIRECTLY to the "View All Orders" page instead. ~ Here's what I did.
WORKS WITH: ISC VERSION 4.07
FILE: admin\includes\classes\class.auth.php
FIND (NEAR LINE #220)
Code: Select all
<script type="text/javascript">
document.location.href='index.php?ToDo=';
</script>
CHANGE TO:
(It's just a personal preference, but I like to comment-out original lines instead of deleting them. This makes it easy to restore, or refer to, the original code in the event something goes wrong.)
================
Code: Select all
<script type="text/javascript">
// NEW DEFAULT ADMIN PAGE AFTER LOGIN... GO DIRECTLY TO NEW ORDERS
//document.location.href='index.php?ToDo=';
document.location.href='index.php?ToDo=viewOrders';
</script>
Now, whenever you log in.. the default landing page is "New Orders".
ERRORS? COMMENTS? IMPROVEMENTS?? ~~ Let me know!
