X-Cart: shopping cart software

X-Cart forums (https://forum.x-cart.com/index.php)
-   Changing design (https://forum.x-cart.com/forumdisplay.php?f=51)
-   -   Set xcart to show highest SKU numbers first by default (https://forum.x-cart.com/showthread.php?t=13231)

dgrif 04-05-2005 08:31 AM

Set xcart to show highest SKU numbers first by default
 
Is it possible to set the cart so it will show the highest SKU number first? I need the newest products added to show up first in all categories. I can do it by pos but that's lot of work to have to change those each time you add a product. If I can set it to always show the highest SKU number first that will take care of my problem.

Thanks to all of you for the help and patience all of you have given this newbie.

Delores

shan 04-05-2005 09:40 AM

edit search.php

find the bit that says "ASC" "DESC" and swap them around

dgrif 04-05-2005 09:51 AM

SKU Numbers
 
Hi,
Thanks for your reply.
I'm not finding anything in search.php like this.

Delores

shan 04-05-2005 10:02 AM

edit include/search.php

find

Code:

$direction = ($data["sort_direction"] ? "DESC" : "ASC");

replace with

Code:

$direction = ($data["sort_direction"] ? "ASC" : "DESC");

dgrif 04-05-2005 10:24 AM

SKU Numbers
 
Hi,
Worked great!
Thank you so much.

Delores


All times are GMT -8. The time now is 01:12 PM.

Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.